1. 기존 프로젝트 폴더 내에 git bash 등으로 진입
cd myProject
2. git 초기화
git init
완료 메시지 : Initialized empty Git repository in C:/myProject/.git/
3. github 또는 bitbucket 등 프로젝트를 연결 할 repository 생성 (README 등 파일 생성 없이 빈 레포지토리로 생성 권장)
README 파일을 생성하면 최초 커밋 시 파일 기록이 달라서 오류발생할 확률이 높음
4. repository 연결
git remote add origin username@bitbucket.org/myname/myproject.git
연결된 repo 확인 (fetch / push 주소 확인)
git remote -v
5. 새 repository에서 내용을 pull 받음으로써 git history를 동기화
git pull origin master
6. 새 repository에 파일을 업로드 하기 위해 스테이지에 파일 올림
git add .
git add . 은 모든 파일을 스테이지에 올린다는 뜻
7. 최초 커밋
git commit -m "first commit"
8. repository에 파일 업로드
git push -u origin master
-u 옵션은 이 다음부터는 git pull / git push 를 할 때 origin master 를 지정하지 않아도 알아서 origin master로 붙어서 가져오라는 옵션
반응형
'Git' 카테고리의 다른 글
[GIT] Branch 관리 방법 (0) | 2020.11.11 |
---|---|
[GIT] push 강제 수행 (0) | 2020.11.11 |
git pull 시 merge 오류 (0) | 2019.08.01 |
git merge 시 conflict 났을 때 (0) | 2018.12.19 |
원격 브랜치 가져오기 (0) | 2018.11.22 |