实用命令
- 恢复删除的所有文件
git ls-files -d | xargs git checkout --
- 恢复删除的所有文件(路径或文件含中文)
git ls-files -d | xargs echo -e | xargs git checkout --
git ls-files -d | xargs git checkout --
git ls-files -d | xargs echo -e | xargs git checkout --
版权声明:《实用的 git 技巧》由 onephone 在 2016年09月24日写作。著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。
文章链接:http://codeshold.com/2016/09/git_common_commands.html