Git 实用功能
从工作区去除大量已删除文件当用 /bin/rm 命令删除了大量文件之后,你可以用下面一条命令从工作区和索引中去除这些文件,以免一个一个的删除:$ git rm $(git ls-files -d)例如:$ git statusOn branch masterChanges not staged for commit: deleted: a deleted: c$ git rm $(git ls-files -d)rm 'a'rm 'c'$ git statusOn branch masterChanges t…
欢马劈雪