结论

删除未添加到暂存区的文件

  1. #显示将要删除的文件和目录
  2. git clean -n
  3. #删除文件和目录
  4. git clean -df
  5. #删除文件
  6. git clean -f
  7. git rm <file>