본문 바로가기
● IDE, System/Git

git clone, push, pull 하기

by 0ver-grow 2019. 6. 21.
반응형

1. 새 저장소 만들기

git을 clone하거나 commit할 폴더로 들어가서

git init 입력

 

2. 저장소 받아오기

로컬 저장소 복제하기

git clone /로컬/저장소/경로

 

원격 서버 저장소 복제하기

git clone 사용자명@호스트:/원격/저장소/경로

 

3. 변경 파일 인덱스에 추가하기

git add "파일명"

만약 인덱스에 추가할 파일이 많을시

git add .

으로 입력

 

4. commit하기

git commit -m "설명쓰기"

 

5. 기존 원격 저장소에 발행(PUSH)하기

git push origin master

여기서 master는 발행하려는 가지(branch) 이름

 

만약 기존 원격 저장소가 아닌 다른 원격 서버에 발행하려면 서버주소를 먼저 입력할 것

git remote add origin "서버URL"

그리고 나서

git push origin master

입력

 

https://rogerdudler.github.io/git-guide/index.ko.html

 


혹시라도 다음과 같은 에러가 나타난다면?

PS C:\Users\last2018\dev\js\FCawling> git push origin master
To https://github.com/*
 ! [rejected]        master -> master (fetch first)
error: failed to push some refs to 'https://github.com/*
hint: Updates were rejected because the remote contains work that you do
hint: not have locally. This is usually caused by another repository pushing     
hint: (e.g., 'git pull ...') before pushing again.
hint: See the 'Note about fast-forwards' in 'git push --help' for details.    

git pull origin master를 해줄 것

반응형