두가지 경우로 나누었음
- 초기 생성까지 한 상태일 경우
- 어느정도 작업된 상태일 경우
🔽 아래와 같이 Git repository 까지 생성했다면
git init
git remote add origin {깃 주소}
git remote -v
git add .
: remote에 올릴 변경된 모든 파일 추가git commit -m “init commit”
: commit 메세지 작성git push origin master
: remote에 올리기git init
git remote add origin {깃 주소}
git remote -v
git remote update
git branch -av
: remote 브랜치와 로컬브랜치 모두 확인 가능git checkout -b {로컬브랜치 이름}
git pull origin {원격브랜치 이름}
git add .
: remote에 올릴 변경된 모든 파일 추가git commit -m “init commit”
: commit 메세지 작성git push origin master
: remote에 올리기