Is there an easy way to delete untracked git files
有时我在我的Git存储库中有未跟踪的文件,我想删除它们。
有没有一种简单的方法可以使用git或bash,甚至其他的方法?
- 请参阅stackoverflow.com/questions/61212/…
使用git clean命令。
1
| git clean -f -d # will delete all untracked directories and files. |
- 重复问题:请参阅stackoverflow.com/questions/61212/…
- 这仍然不是否定答案的理由。OP的任务是确保问题尚未被提出。