您的位置:首页 > 其它

Some basic tips about 'git stash'

2017-11-21 10:08 477 查看
the command ‘git stash’ is to save the modification in workspace and staged status in the stack.

The basic command is:

##save the modification to the stack
git stash


If you want to add some comments:

git stash save 'the comments'


If you want to see all of the information in the stack:

git stash list


If you want to pop the top information in the stack:

git stash pop


want to pop several ones in the stack:

###want to pop the 2 items in the stack
git stash pop stash@{2}


If you want to drop the items in the stack from top to buttom:

git stash drop
git stash drop stash@{number}


If you want to delete all of the information in the stack:

git stash clear


If you want to see the detailed infor in the stack

git show stash @{number}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  git stash