Skip to content

Instantly share code, notes, and snippets.

@zuoRambo
Created May 10, 2016 03:49
Show Gist options
  • Save zuoRambo/a04c07ee96b71a51096e856721418fde to your computer and use it in GitHub Desktop.
Save zuoRambo/a04c07ee96b71a51096e856721418fde to your computer and use it in GitHub Desktop.
git-skills
# git stash 讲当前修改隐藏起来

# 查看隐藏
git stash list
git stash pop
git stash pop --index stash@{0}
git stash drop --index stash@{0}
# 清除隐藏
git stash clear
git diff HEAD
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment