git stash ๋ช ๋ น์ด๋ฅผ ์ด์ฉํด ์์ ์ค์ด๋ ๋ณ๊ฒฝ์ฌํญ๋ค์ ์์๋ก ์ ์ฅํ ์ ์๋ค.
git status ๋ช ๋ น์ด๋ฅผ ์ด์ฉํ๋ฉด stage์ ์๋ ํ์ผ๋ค์ ๋ชฉ๋ก์ ํ์ธํ ์ ์๋ค. ์ด๋ค์ tracked์ด๋ฉด์ modified ์ํ์ด๊ฑฐ๋, ์๋กญ๊ฒ stage์ ์ถ๊ฐ๋ ํ์ผ๋ค์ด๋ค.
$ 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
์ด๋ค์ commitํ์ง ์๊ณ , stash์ ์ ์ฅํ ์ ์๋ค.
$ git stash
Saved working directory and index state \
"WIP on master: 049d078 added the index file"
HEAD is now at 049d078 added the index file
(To restore them type "git stash apply")
Stash์ ํ์ผ์ ์ ์ฅํ๊ณ ๋๋ฉด working directory๊ฐ ๊นจ๋ํด์ง๋ค. ์ฆ ์์ ๋ ์ฌํญ์ด ์๋ ์ํ๋ก ๋์๊ฐ๋ค.
$ git status
# On branch master
nothing to commit, working directory clean
์ ์ฅ๋ stash์ ๋ชฉ๋ก์ ํ์ธํ๋ ค๋ฉด git stash list ๋ช ๋ น์ด๋ฅผ ์ด์ฉํ๋ฉด ๋๋ค.
$ 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
์ ์ฅํ stash๋ฅผ ๋ถ๋ฌ์ค๋ ค๋ฉด git stash apply [stash ์ด๋ฆ] ๋ช ๋ น์ด๋ฅผ ์ด์ฉํ๋ค. git stash apply stash@{2}์ ๊ฐ์ด, ๋ถ๋ฌ์ฌ stash ์ด๋ฆ์ ์ง์ ํ ์๋ ์๊ณ , stash ์ด๋ฆ์ด ์ง์ ๋์ง ์์ผ๋ฉด ๊ฐ์ฅ ์ต๊ทผ์ stash๋ฅผ ๋ถ๋ฌ์จ๋ค.
$ git stash apply
On branch master
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: index.html
modified: lib/simplegit.rb
no changes added to commit (use "git add" and/or "git commit -a")
์ด ๋ ๊ผญ stash๋ฅผ ์ ์ฅํ branch์ ๊ฐ์ branch์์ stash๋ฅผ ๋ถ๋ฌ์์ผ ํ๋ ๊ฒ์ ์๋๋ค. ๋ค๋ฅธ branch๋ก checkout ํ ํด๋น ๋ณ๊ฒฝ์ฌํญ์ ์ ์ฉํ ์๋ ์๋ค.
Stash๋ฅผ ๋ถ๋ฌ์ค๋ฉด, staged์๋ ํ์ผ๋ค์ด ๋ค์ ์๋์ผ๋ก stage์ ์ฌ๋ผ๊ฐ์ง ์๋๋ค. (์ ์ฝ๋๋ฅผ ๋ณด๋ฉด ๋งจ ์๋์ 'no changes added to commit'์ด๋ผ๋ ๋ฌธ๊ตฌ๋ฅผ ํ์ธํ ์ ์๋ค.)
๋ง์ฝ ๋ถ๋ฌ์จ ํ์ผ๋ค์ด stage์ ์ฌ๋ผ๊ฐ ์๊ฒ ํ๋ ค๋ฉด git stash apply์ --index ์ต์ ์ ์ฃผ๋ฉด ๋๋ค.
$ git stash apply --index
On branch master
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
Stash๋ฅผ ๋ถ๋ฌ์๋ ํด๋น stash๋ ์ฌ์ ํ ์ ์ฅ๋ ์ํ๋ก ๋จ์์๋ค. ํน์ stash๋ฅผ ์ง์ฐ๋ ค๋ฉด git stash drop ๋ช ๋ น์ ์ฌ์ฉํ๋ฉด ๋๋ค.
$ git stash drop stash@{0}
Dropped stash@{0} (364e91f3f268f0900bc3ee613f9f733e82aaed43)
Stash๋ฅผ ํ์ฉํ๋ ๋๋ค๋ฅธ ๋ฐฉ๋ฒ์ working directory๋ฅผ ์ฒญ์ํ ๋์ด๋ค. ๊ฐ์ ์ฝ๋๊ฐ ๋ณ๊ฒฝ๋์ด ์ถฉ๋์ด ๋ฐ์ํ์ ๋ ๋ค์๊ณผ ๊ฐ์ ์๋ฌ ๋ฉ์ธ์ง๊ฐ ๋ํ๋๋ค.
์ด ๋ ๋จ์ํ ๋ณ๊ฒฝ์ฌํญ๋ค์ ์ง์ฐ๋ ๊ฒ์ด ์๋๋ผ stash๋ฅผ ์ด์ฉํ๋ฉด, ์์ ์ฌํญ๋ค์ด stash์ ์์์ ์ฅ๋๋ฏ๋ก ๋ณด๋ค ์์ ํ๊ฒ ์ฌ์ฉํ ์ ์๋ค.
์ถ์ฒ: https://git-scm.com/book/ko/v2/Git-%EB%8F%84%EA%B5%AC-Stashing%EA%B3%BC-Cleaning
Git - Stashing๊ณผ Cleaning
์์ ํ๋ ์ ์ฅ์๊ฐ ์์ ์ง์ ๋ถํด์ ธ์ Git์๊ฒ ์ง์ง๋ก ๊ฐ์ ๋ก ์ ๋ฆฌํ๋๋ก ํด์ผ ํ๋ ๊ฒฝ์ฐ๊ฐ ์๊ธธ ์ ์๋ค. ์๋ฅผ ๋ค์ด Git ๋ฒ์ ๊ด๋ฆฌ ๋ฐ์ดํฐ๊ฐ ํฌํจ๋ ๋๋ ํ ๋ฆฌ๋ฅผ ๋ณต์ฌํด์๊ฑฐ๋ ์๋ธ๋ชจ๋ ๋๋ ํ ๋ฆฌ
git-scm.com
'๐ป OS & Tools > Git' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
Git commit ์ ํํ ์๊ฐ ํ์ธํ๊ธฐ (3) | 2022.10.26 |
---|---|
Git ์ด์ฉ๋ฒ๊ณผ ๋ช ๋ น์ด (0) | 2020.02.08 |