아래 정도만 익히면 될 듯하다.
물론 각 명령의 추가 parameter도 알아두면 좋다.
git clone <url>
git log
git remote
git branch
git pull
git fetch
git checkout <branch> or <revision>
git push origin master
git merge <from branch>
git rebase
계정 정보 저장
git config credential.helper store
물론 각 명령의 추가 parameter도 알아두면 좋다.
git clone <url>
git log
- git log --oneline : 한줄씩 본다.
- git log --oneline --all --graph -n
- git log -p : 파일변경사항 출력
- git log <commit ID>
git remote
- show
- update
- -v
git branch
- git branch <branch> : branch 생성
- git branch -d <branch> : 삭제
git pull
git fetch
git checkout <branch> or <revision>
- git check <branch> : branch 소스코드로 checkout
- git checkout -b <branch> : branch없다면 생성하여 checkout한다.
- git checkout -- <file> : to discard changes in working directory.
git push origin master
git merge <from branch>
git rebase
계정 정보 저장
git config credential.helper store
git 설정
git config --global user.email "freehuni@hanmail.net"
git config --global user.name "freehuni"
git config --global core.editor "code --wait"
댓글
댓글 쓰기