stash
git ์์ ์ ์ฅ
์ฌ์ฉ
# ์ ์ฅ
$ git stash save [๋ฉ์์ง]
# ๋ชฉ๋ก ์กฐํ
$ git stash list
# ๋ฐ์
$ git stash apply [stash@{index}]
# ์ญ์
$ git stash drop [stash@{index}]
# ๋ฐ์ ํ ์ญ์
$ git stash pop [stash@{index}]
# ๋ณ๊ฒฝ์ฌํญ ์กฐํ
$ git stash show [stash@{index}]
# ๋ธ๋์น๋ก ๋ถ๋ฆฌ
$ git stash branch <BRANCHNAME> [stash@{index}]
Shell
๋ณต์ฌ
์ฐธ๊ณ
โข
http://www.popit.kr/git-stash/



