git stash: 하던 작업을 임시로 저장해두고 싶을 때 사용하는 명령어
어떤 작업을 하던 중에 다른 요청이 들어와 하던 작업을 멈추고 잠시 브랜치를 변경해야 할 때, 아직 완료하지 않은 일을 commit하는 것은 껄끄럽기 때문에 git stash라는 명령어를 사용한다.
아직 마무리하지 않은 작업을 스택에 잠시 저장할 수 있도록 하는 명령어이다. 이를 통해 아직 완료하지 않은 일을 commit하고 나중에 다시 꺼내와 마무리할 수 있다.
Modified이면서 Tracked 상태인 파일
Staging Area에 있는 파일(Staged 상태의 파일)
git stash
위의 명령어를 통해 새로운 stash를 스택에 만들어 하던 작업을 임시로 저장한다.
index.html
: Staging Area에 있는 파일(Staged 상태의 파일)lib/simplegit.rb
: Modified이면서 Tracked 상태인 파일// working directory에 있는 파일의 상태 확인
$ git status
Changes to be committed:
(use "git reset HEAD <file>..." to unstage)
modified: index.html
Changes not staged for commit:
(use "git add <file>..." to update what will be committed)
(use "git checkout -- <file>..." to discard changes in working directory)
modified: lib/simplegit.rb
https://gmlwjd9405.github.io/2018/05/18/git-stash.html
$ git stash
$ git stash save
이제 새로운 작업을 위한 다른 브랜치로 변경할 수 있다.
git stash list
여러 번 stash를 했다면 위의 명령어를 통해 저장한 stash 목록을 확인할 수 있다.
$ git stash list
stash@{0}: WIP on master: 049d078 added the index file
stash@{1}: WIP on master: c264051 Revert "added file_size"
stash@{2}: WIP on master: 21d80a5 added number to log
https://gmlwjd9405.github.io/2018/05/18/git-stash.html
git stash apply
위의 명령어를 통해 했던 작업을 다시 가져온다.
// 가장 최근의 stash를 가져와 적용한다.
$ git stash apply
// stash 이름(ex. stash@{2})에 해당하는 stash를 적용한다.
$ git stash apply [stash 이름]
-index
옵션을 주어야 Staged 상태까지 복원한다. 이를 통해 원래 작업하던 파일의 상태로 돌아올 수 있다.// Staged 상태까지 저장
$ git stash apply --index
index 옵션의 유무 차이: