본문 바로가기
프로그래밍_기타/git

github에 연동

by wjwkddyd221001 2022. 10. 11.

비어 있는 github에 push하기

1. git init

2. git add (파일명)

 

3. git commit -am (버전명)

4. git remote add origin (깃허브주소)

4-1.git remote -v : 현재 remote 저장소 주소 출력

4-2.git remote remove origin : 현재 remote 저장소 주소 삭제


5. git push -u origin master
5-1. username : 저장소 이름

5-2. password : setting > developer settings > Personal access tokens

 

github에서 가져오기

1. git clone

 

2. (수정작업 후) git push

 

3. git pull

'프로그래밍_기타 > git' 카테고리의 다른 글

[git] cli 명령어  (0) 2023.03.19
[git] Branch  (0) 2023.03.19
[git] git 기본 설명  (0) 2023.03.19
git config  (0) 2022.10.11