본문 바로가기
Tools/Git

[Git] Git 명령어 (기타)

by 호호호호히히히히 2020. 10. 27.
728x90
반응형

Git 명령어  (git command)

 

* 업무에서 자주 쓰는 것들만 모아뒀을 뿐 더 많은 명령어가 존재합니다.

Git 명령어 모음 (https://git-scm.com/book/ko/v2)

 

Git log (기록보기), show (내용보기)    
명령어 설명 실행화면
git log log 확인
git log --graph --abbrev-commit --all git log
--graph //예쁘게
--abbrev-commit //hash 앞 7자리만
--all //모든 branch와 태그 함께
git show
git show [특정 commit hash]
commit된 파일 내용 반영 확인

기존 내용
-  삭제한 내용
+ 추가한 내용

 

Git stash(commit 전 임시저장)    
명령어 설명 실행화면
git stash 현재 File의 내용 저장,
변경된 내용은 사라짐
 
git stath list git log 와 비슷하게 list 보기  
git stash show git show와 비슷하게 상세 내용 보기  
git stash pop 최근에 저장한 stash 불러오기

ex)
git stash --임시저장
git pull --불러오기
git stash pop --저장내용 불러와서 복구하기
순 등으로 사용
 
git stash drop
git stash drop [index]

index = @{n}
index 미 설정시 : 제일 마지막 stash삭제
index 설정 시 : 해당 index stash만  삭제
 
git stash clear stack 내 모든 stash 지워짐  
반응형

'Tools > Git' 카테고리의 다른 글

[Git] Git 참고 사이트 (Git Study)  (0) 2020.10.28
[Git] Git활용을 위한 리눅스 명령어  (0) 2020.10.24
[Git] GitHub 가입하기  (0) 2020.10.23
[Git] Git 명령어 (기본)  (0) 2020.10.22

댓글