$ git status On branch feature/20160420_complain_630222 Untracked files: (use "git add <file>..." to include in what will be committed) 在文件夹中,经常会有些“其他”文件,比如上节课最后提到的,编辑器产生~结尾的备份文件,或者一些临时文件.又可能,某些文件我们只是在本地使用,并不想提交到远程的仓库中被别人看到.但如果我们不跟踪这些文件,Gi…
$ git status # On branch test # Untracked files: # (use "git add <file>..." to include in what will be committed) # # .python-version nothing added to commit but untracked files present (use "git add" to track) $ git clean -f -d…