我在计算机上创建了一个新项目 vs 2015 update 2 ,我提交和同步到visual studio TFS 免费在线存储库。然后我把一个克隆拉到另一台计算机上,经过几天创建新文件等...我做了重建,构建正常,然后我去团队资源管理器 - >的更改
我在变化中看到,有138个......其中.txt,.dll,.cache,.pdb等。 当然我“可以”根本不“分阶段”那些,但为什么visual studio 2015(upate 2)甚至会向我展示这些文件。 (我记得git / visual studio的其他项目,它们根本没有显示
bin\Debug
obj\Debug
发生什么事了?它为什么要这样做?
(gitignore问题?)
答案 0 :(得分:5)
您将不得不从命令行对其进行锤击。
我没有通过简单删除.git \ ms-persist.xml
获得结果
该文件被重新创建..
2
cmd>
git status ( i would do this frequently for peace of mind
Keep your 1 or more .gitignore file in the project folder(s)
git commit -m "all your files" (save your code)
git rm -r --cached . (remove any changed files from index (stage)
git add . ( add all files which will remove .dll etc..
git commit -m "now your gitignore will work..."