git

Github 업로드

chanchand 2023. 1. 17. 22:23
반응형

repository 생성

New > Create new repository

repository 이름을 작성하고 create repository 버튼 클릭한다.

URL 복사

 

 

repository & 프로젝트 연결

프로젝트 폴더의 터미널에서 진행한다.

 

git 저장소 초기화 / 일반 폴더에서 git 저장소로 변환

git init

 

 

붉은색 글씨로 커밋해야 할 파일들을 표시해준다.

git status

 

git status

 

git add . : 모든 파일 선택

git add [파일/디렉터리 경로] : 커밋할 파일 추가

git commit -m "전달메시지" : 추가한 파일을 커밋해준다.

모든 파일을 추가하고, 추가한 파일을 커밋한다.

git add .
git commit -m "git test"

git commit -m "git test"

 

main branch 생성한다.

git branch -M main

 

생성한 repository에 프로젝트를 추가한다.

git remote add origin [복사한_주소]

 

 

 

커밋한 파일을 push 해준다.

git push -u origin main

 

* 위 과정에서 아래와 같은 오류를 볼 수 있다. 

remote: Invalid username or password.

* 오류 해결 

2023.01.17 - [mac] - [Git 에러] remote: Invalid username or password.

 

[Git 에러] remote: Invalid username or password.

git push 명령어 시도할 때, 아래와 같은 오류를 볼 수 있다. remote: Invalid username or password. fatal: Authentication failed for '[URL주소]' Github Settings 클릭 > 맨 밑 Developer settings 클릭 Personal access tokens-Tokens(class

chandlerbong.tistory.com

 

정상적으로 repository가 생성된 것을 확인할 수 있다.

반응형

'git' 카테고리의 다른 글

git/원격 저장소 연결 해제  (0) 2023.09.15
백준, 프로그래머스 GitHub 연동  (0) 2023.02.09
[Git 에러] remote: Invalid username or password.  (0) 2023.01.17
Git 다운로드  (0) 2023.01.17
Git vs Github  (0) 2023.01.17