Command

· 기타
GIT 명령어 * 기억 잘 안나는 git 명령어들 모아둠. (마지막 수정일 : 2020.11.24) git stash save현재 작업을 저장해두고 branch를 head로 돌린다.(git reset –hard) git stash list저장되어 있는 stash들 보기 git stash popstash들은 stack에 저장된다. 따라서 가장 최근에 save한 stash가 현재 branch에 적용된다. git stash applygit stash pop 과 비슷한 명령어지만 stash list에서 삭제하지 않는다는 점이 다르다. git stash drop필요 없는 stash를 삭제 git stash clear전체 stash list를 삭제 git commit --amend직전 commit 메세지 수정 gi..
S0PH1A
'Command' 태그의 글 목록