[GIT] 명령어 모음

2016. 9. 19. 21:09Etc../Git

1. master 브랜치로 origin으로 푸쉬

- git push -origin master


2. revert

- git checkout -- '파일경로'


3. 커밋할 파일 저장

- git add '경로'


4. 파일 커밋하기

- 일반

  $ git commit -m '주석'


5. branch 생성

- git branch 'name'


6. 현재 branch 확인

- git branch


7. 모든 branch 확인

- git branch -a 


8. branch 변경

- git checkout 'name'


9. 변경 사항 merge

- git merge 'branch name'


10. 원하는 commit id 받기

- git cherry-pick 'commitid'


11. git 설정확인

- git config --list


12. 원격저장소의 최신이력받기

- git fecth origin


13. 가장 최근 커밋으로 돌리기

- git reset HEAD^


계속~~~~~~~

'Etc.. > Git' 카테고리의 다른 글

특정 폴더 / 파일 제외하기  (1) 2016.09.17