git 恢复删除文件

要查看删除的文件: git ls-files –deleted

恢复则需要从新checkout: git checkout – <deleted_file>

多个文件同时操作可以使用xargs

gitls-fies-d|xargsgitcheckout--