当我第一次将项目添加到源代码管理(GIT)时,它将显示所有文件,一切都将是桃子。我可以继续工作大约30分钟-1小时,所有的更改都会显示出来(我做的任何文件都会更改)。
但经过一段时间后,无论我做了多少更改,都会显示没有文件被编辑。我只是不明白...我看了.gitignore文件,我没有看到我正在使用的任何文件类型,所以我不知道到底发生了什么。
我正在使用多层MVC应用程序,因此有很多C#,一堆.cshtml等等。
提示?谷歌找不到任何东西。这是.gitignore文件...... 我和这个家伙有同样的问题......他没有回答!
## Ignore Visual Studio temporary files, build results, and
## files generated by popular Visual Studio add-ons.
# User-specific files
*.suo
*.user
*.sln.docstates
# Build results
[Dd]ebug/
[Rr]elease/
x64/
build/
[Bb]in/
[Oo]bj/
# Enable "build/" folder in the NuGet Packages folder since NuGet packages use it for MSBuild targets
!packages/*/build/
# MSTest test Results
[Tt]est[Rr]esult*/
[Bb]uild[Ll]og.*
*_i.c
*_p.c
*.ilk
*.meta
*.obj
*.pch
*.pdb
*.pgc
*.pgd
*.rsp
*.sbr
*.tlb
*.tli
*.tlh
*.tmp
*.tmp_proj
*.log
*.vspscc
*.vssscc
.builds
*.pidb
*.log
*.scc
# Visual C++ cache files
ipch/
*.aps
*.ncb
*.opensdf
*.sdf
*.cachefile
# Visual Studio profiler
*.psess
*.vsp
*.vspx
# Guidance Automation Toolkit
*.gpState
# ReSharper is a .NET coding add-in
_ReSharper*/
*.[Rr]e[Ss]harper
# TeamCity is a build add-in
_TeamCity*
# DotCover is a Code Coverage Tool
*.dotCover
# NCrunch
*.ncrunch*
.*crunch*.local.xml
# Installshield output folder
[Ee]xpress/
# DocProject is a documentation generator add-in
DocProject/buildhelp/
DocProject/Help/*.HxT
DocProject/Help/*.HxC
DocProject/Help/*.hhc
DocProject/Help/*.hhk
DocProject/Help/*.hhp
DocProject/Help/Html2
DocProject/Help/html
# Click-Once directory
publish/
# Publish Web Output
*.Publish.xml
# NuGet Packages Directory
## TODO: If you have NuGet Package Restore enabled, uncomment the next line
#packages/
# Windows Azure Build Output
csx
*.build.csdef
# Windows Store app package directory
AppPackages/
# Others
vsql/
*.Cache
ClientBin/
[Ss]tyle[Cc]op.*
~$*
*~
*.dbmdl
*.[Pp]ublish.xml
*.pfx
*.publishsettings
# RIA/Silverlight projects
Generated_Code/
# Backup & report files from converting an old project file to a newer
# Visual Studio version. Backup files are not needed, because we have git ;-)
_UpgradeReport_Files/
Backup*/
UpgradeLog*.XML
UpgradeLog*.htm
# SQL Server files
App_Data/*.mdf
App_Data/*.ldf
#LightSwitch generated files
GeneratedArtifacts/
_Pvt_Extensions/
ModelManifest.xml
# =========================
# Windows detritus
# =========================
# Windows image file caches
Thumbs.db
ehthumbs.db
# Folder config file
Desktop.ini
# Recycle Bin used on file shares
$RECYCLE.BIN/
# Mac desktop service store files
.DS_Store
答案 0 :(得分:17)
我发现VS打开了.opendb文件,在搜索更改时导致权限冲突。它报告了在输出窗口中导致问题的精确文件,在" Source Control - Git"下。将此添加到我的.gitignore修复了该问题。如果VS重新启动或重新启动修复了问题,那么您可能正在关闭有问题的文件句柄 - 在我的情况下,VS每次都会打开问题文件。
另请参阅Visual Studio TFS Git not seeing any changes了解更多可能的原因。
答案 1 :(得分:9)
重新启动我的机器为我修复了它。重新启动Visual Studio是不够的,但在重新启动整个系统后,更改现在显示在团队资源管理器中。
答案 2 :(得分:7)
我的Visual Studio“源代码控制 - Git”日志一直在抱怨我的SQL项目中的锁定文件。一个.jfm文件。将它添加到.gitignore然后工作。
因此,无论您做出何种更改,解决方案都不会显示任何更改,请检查您的Git日志。
答案 3 :(得分:3)
对我来说,没有必要重新启动。只需关闭并重新打开解决方案即可。只要该技巧不起作用,重新启动Visual Studio就可以了。
与Eclipse IDE不同,Visual Studio不提供“重新启动”菜单项。我需要install an Extension才能做到这一点。
答案 4 :(得分:2)
不幸的是,以上都没有为我工作,但过了一段时间,这是我的解决方案:
.git
文件夹。'index.lock'
文件。我正在使用Visual Studio 2017,但我希望这有助于某人!
答案 5 :(得分:1)
为了它的价值,我没有必要重新启动VS2015或我的机器才能显示我的更改。我只是断开与源控件的连接,并重新连接,然后它看到了更改。
答案 6 :(得分:1)
在我的场景中,我正在处理本地项目,同时将项目克隆到了其他目录中。当我尝试克隆当前的工作项目时,它以某种方式连接到其他文件夹。我为当前项目打开了git bash,可以看到分支未关联。当我打开克隆的项目时,我可以看到关联的分支。因此,在VS中,我打开了克隆的存储库并添加了我的项目,我可以在Team Explorer中看到我的更改,更改
答案 7 :(得分:0)
如果您正在使用Git Extensions,重新安装并重新启动Visual Studio 2015,它就解决了我的问题。
答案 8 :(得分:0)
确保您的文件未加密。我使用的是Windows工作文件夹,新文件已加密。 VS中的Git无法看到它们。