码迷,mamicode.com
首页 > 其他好文 > 详细

git stash 操作简记

时间:2015-10-26 12:22:18      阅读:235      评论:0      收藏:0      [点我收藏+]

标签:

  1. git stash 保存当前的修改

  2. git stash pop  弹出stash中最顶端的即stash<0>的内容

  3. git stash list  查看stash中所有的改动

  4. git stash apply @stash<id> / git stash pop @stash<id> 弹出stash<id>的修改

  5. git stash clear  清除所有的stash

  6. git stash drop @stash<id>  移除stash<id> 


注:git stash pop @stash<id> 命令会在执行后将对应的stash id 从stash list里删除

      git stash apply @stash<id>命令则会继续保存stash id

git stash 操作简记

标签:

原文地址:http://my.oschina.net/shieh/blog/522012

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!