Study

git 프로젝트 저장소 업로드 하기

Dodal 2021. 12. 5. 20:40

이젠 좀 외워~!#@$@#

 

1. Github에서 저장소를 생성

 

2. Repository 생성 

 

3. repo URL 복사

4. git bash 실행

>> git config --global user.name "깃허브 이름"

>> git config --global user.email "깃허브 가입 이메일"

>> git init

>> git add .

>> git status 

* $ git config --global alias.st status

>> git commit -m "message"

>> git remote add origin "repo URL"

>> git push -u origin master

반응형

'Study' 카테고리의 다른 글

Please use a personal access token instead.  (0) 2021.12.05