Created
October 8, 2013 08:49
-
-
Save mchayka/6881686 to your computer and use it in GitHub Desktop.
GIT: stash
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git stash : добавить текущие незакоммиченные изменения в стек изменений и сбросить текущую рабочую копию до HEAD’а репозитория; git stash list : показать все изменения в стеке; git stash show : показать последнее измененеие в стеке (патч); git stash apply : применить последнее изменение из стека к текущей рабочей копии; git stash drop : удалить последнее изменение в стеке; git stash pop : применить последнее изменение из стека к текущей рабочей копии и удалить его из стека; git stash clear : очистить стек изменений. - See more at: http://evasive.ru/articles/git_kung-fu.html#sthash.nVEcWbzH.dpuf |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment