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 的 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
网友评论