gpt4 book ai didi

git - Visual Studio 2015 更新 2 - Git 向我展示了所有 bin\debug 和 obj\debug 文件夹/文件的更改,为什么它会忽略 gitignore

转载 作者:太空狗 更新时间:2023-10-29 13:12:05 24 4
gpt4 key购买 nike

我在计算机上使用 vs 2015 update 2 创建了一个新项目,我提交同步到 visual studio TFS 免费在线存储库。然后我将一个克隆复制到另一台计算机上,并在创建新文件等几天后......我进行了重建,构建良好,然后我转到 Team Explorer --> 变化

我在更改中看到,有 138 个...其中 .txt、.dll、.cache、.pdb 等。 当然,我“不能”简单地“暂存”那些文件,但为什么 visual studio 2015(更新 2)甚至会向我显示这些文件。 (我记得使用 git/visual studio 的其他项目根本不显示

 bin\Debug

obj\Debug

发生了什么事?它为什么这样做/显示这个?

(gitignore 问题?)

最佳答案

您将不得不从命令行敲打它。

我没有通过简单删除 .git\ms-persist.xml 得到结果该文件被重新创建..

  1. 压缩您的项目以确保不会丢失任何文件/在您的远程工作...

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..."

关于git - Visual Studio 2015 更新 2 - Git 向我展示了所有 bin\debug 和 obj\debug 文件夹/文件的更改,为什么它会忽略 gitignore,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37150036/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com