美文网首页
找回被删除的 Git Stashes

找回被删除的 Git Stashes

作者: WellCheng | 来源:发表于2017-11-20 16:15 被阅读73次

    Git 的 Stash 功能很方便的帮我们存一些临时代码,如果不小心把 Stash 代码删除了如何恢复呢?
    使用 git fsck --lost-found 查看我们最近删除的 Stash ;
    找到你需要恢复的 dangling commit(只需关注 dangling commit );
    再使用 git merge commitid 即可恢复。

    转自https://github.com/southpeak/iOS-tech-set/blob/master/2017/11.md

    相关文章

      网友评论

          本文标题:找回被删除的 Git Stashes

          本文链接:https://www.haomeiwen.com/subject/nuivvxtx.html