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를 해줄 것
'● IDE, System > Git' 카테고리의 다른 글
git add, git commit 취소하기 (0) | 2021.02.05 |
---|---|
깃허브에 이미지, 링크 넣기 (0) | 2021.02.02 |
[Git] 깃허브 시작하기. 총정리 (init, add, commit, push, pull) (0) | 2021.02.01 |
Updates were rejected because the remote contains work that you do (0) | 2019.07.10 |
git push 에러 발생 해결방법 (0) | 2019.07.03 |