기존 원격 저장소 Clone 할 경우
git clone <repo url>
git remote -v
git add -a
git commit -m "commit message"
git push
git log : 현재 version 위의 사앹를 보여 줌
git log --all --oneline
git checkout <commit tag> : 해당 version 으로 working, staging 을 변경
git chekcout master : master 로 이동
Git 기초
HEAD : Working directory 와 Stage area 가 어떤 version 과 같은지 알려 줌.
MASTER : 현재 branch 에서 작업한 마지막 version 이 무엇인지 알려 줌
CHECKOUT : Working directory 와 Stage area 를 특정 Commit 으로 변
Git 및 원격 저장소 Repo 새로 생성 할 경우
원격저장소에서 repo 생성
'프로그래밍 (이동 완료) > Github, git' 카테고리의 다른 글
Github profile 관리 (0) | 2023.09.24 |
---|