Gitignore 不会忽略 Windows7/8 上 Visual Studio 2015 RC 的 .vs 文件夹

Posted

技术标签:

【中文标题】Gitignore 不会忽略 Windows7/8 上 Visual Studio 2015 RC 的 .vs 文件夹【英文标题】:Gitignore won't ignore .vs folder for Visual Studio 2015 RC on Windows7/8 【发布时间】:2015-09-01 07:53:02 【问题描述】:

我们在 .gitignore 中尝试了各种显式和通配符条目,但是作为 Visual Studio 2015 RC 一部分的隐藏 .vs/ 文件夹中的项目不断被提交。

由于这些是针对开发人员的个人设置,因此它们显然总是不同的并显示在 git diff 中。

是否有任何技巧可以忽略存储库中*** .vs/ 文件夹中的所有内容?

【问题讨论】:

你能显示你项目中的.gitignore文件吗? 不要使用git add ...? 【参考方案1】:

按照以下步骤,问题将得到解决。

第 1 步:将以下内容添加到文件 .gitignore。

## Ignore Visual Studio temporary files, build results, and
## files generated by popular Visual Studio add-ons.

# User-specific files
*.suo
*.user
*.userosscache
*.sln.docstates

# User-specific files (MonoDevelop/Xamarin Studio)
*.userprefs

# Build results
[Dd]ebug/
[Dd]ebugPublic/
[Rr]elease/
[Rr]eleases/
x64/
x86/
bld/
[Bb]in/
[Oo]bj/
[Ll]og/

# Visual Studio 2015 cache/options directory
.vs/
# Uncomment if you have tasks that create the project's static files in wwwroot
#wwwroot/

# MSTest test Results
[Tt]est[Rr]esult*/
[Bb]uild[Ll]og.*

# NUNIT
*.VisualState.xml
TestResult.xml

# Build Results of an ATL Project
[Dd]ebugPS/
[Rr]eleasePS/
dlldata.c

# DNX
project.lock.json
artifacts/

*_i.c
*_p.c
*_i.h
*.ilk
*.meta
*.obj
*.pch
*.pdb
*.pgc
*.pgd
*.rsp
*.sbr
*.tlb
*.tli
*.tlh
*.tmp
*.tmp_proj
*.log
*.vspscc
*.vssscc
.builds
*.pidb
*.svclog
*.scc

# Chutzpah Test files
_Chutzpah*

# Visual C++ cache files
ipch/
*.aps
*.ncb
*.opendb
*.opensdf
*.sdf
*.cachefile

# Visual Studio profiler
*.psess
*.vsp
*.vspx
*.sap

# TFS 2012 Local Workspace
$tf/

# Guidance Automation Toolkit
*.gpState

# ReSharper is a .NET coding add-in
_ReSharper*/
*.[Rr]e[Ss]harper
*.DotSettings.user

# JustCode is a .NET coding add-in
.JustCode

# TeamCity is a build add-in
_TeamCity*

# DotCover is a Code Coverage Tool
*.dotCover

# NCrunch
_NCrunch_*
.*crunch*.local.xml
nCrunchTemp_*

# MightyMoose
*.mm.*
AutoTest.Net/

# Web workbench (sass)
.sass-cache/

# 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
*.[Pp]ublish.xml
*.azurePubxml
# TODO: Comment the next line if you want to checkin your web deploy settings 
# but database connection strings (with potential passwords) will be unencrypted
*.pubxml
*.publishproj

# NuGet Packages
*.nupkg
# The packages folder can be ignored because of Package Restore
**/packages/*
# except build/, which is used as an MSBuild target.
!**/packages/build/
# Uncomment if necessary however generally it will be regenerated when needed
#!**/packages/repositories.config
# NuGet v3's project.json files produces more ignoreable files
*.nuget.props
*.nuget.targets

# Microsoft Azure Build Output
csx/
*.build.csdef

# Microsoft Azure Emulator
ecf/
rcf/

# Windows Store app package directories and files
AppPackages/
BundleArtifacts/
Package.StoreAssociation.xml
_pkginfo.txt

# Visual Studio cache files
# files ending in .cache can be ignored
*.[Cc]ache
# but keep track of directories ending in .cache
!*.[Cc]ache/

# Others
ClientBin/
~$*
*~
*.dbmdl
*.dbproj.schemaview
*.pfx
*.publishsettings
node_modules/
orleans.codegen.cs

# Since there are multiple workflows, uncomment next line to ignore bower_components 
# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
#bower_components/

# 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
*.mdf
*.ldf

# Business Intelligence projects
*.rdl.data
*.bim.layout
*.bim_*.settings

# Microsoft Fakes
FakesAssemblies/

# GhostDoc plugin setting file
*.GhostDoc.xml

# Node.js Tools for Visual Studio
.ntvs_analysis.dat

# Visual Studio 6 build log
*.plg

# Visual Studio 6 workspace options file
*.opt

# Visual Studio LightSwitch build output
**/*.HTMLClient/GeneratedArtifacts
**/*.DesktopClient/GeneratedArtifacts
**/*.DesktopClient/ModelManifest.xml
**/*.Server/GeneratedArtifacts
**/*.Server/ModelManifest.xml
_Pvt_Extensions

# Paket dependency manager
.paket/paket.exe
paket-files/

# FAKE - F# Make
.fake/

# JetBrains Rider
.idea/
*.sln.iml

第二步:确保以上操作生效

如果问题仍然存在,那是因为 .gitignore 中的设置只能忽略最初未跟踪的文件。如果版本控制系统中已经包含了一些文件,那么修改.gitignore是无效的。 要彻底解决此问题,您需要在存储库根文件夹中打开 Git Bash 运行以下命令。

$ git rm -r --cached .
$ git add .
$ git commit -m 'Update .gitignore'

当然,您也可以使用 Visual Studio 的 Package Manager Console 来完成 Step 2 中的操作。 那么问题就彻底解决了。

【讨论】:

我认为您不希望将. 作为git rm 的参数,因为这会删除所有内容!我猜您只想删除现在要排除的内容,例如.vs 文件夹。【参考方案2】:

如果它们出现在git diff 中,则说明文件已被跟踪,而 .gitignore 仅影响未跟踪的文件。您需要使用 git rm --cached 从源代码管理中删除文件,then .gitignore 会影响它们。

请注意,当您执行此操作时,其他开发人员在执行下一次git pull 时将在本地删除他们的文件。因此,在这样做之前,他们可能想要对这些文件进行备份。

【讨论】:

【参考方案3】:

在我们的例子中,.vs 目录在我初始化存储库时已添加到源代码管理中。因此,.gitignore 中的行:

/.vs

在我删除目录并签入更改之前没有做任何事情(类似于上面 TPoschel 所说的,但不同的是签入已删除目录是修复它的原因,因为我已经签入 @ 987654324@文件)。

【讨论】:

这是正确的方法。 @Bravo Yeung 给出的答案已从我的本地存储库中删除了所有内容。我需要重新克隆整个项目。因为那个,我差点心脏病发作。 :P 也为我工作。【参考方案4】:

它对我来说是这样的: 打开您的 git 忽略文件并将以下内容添加到列表中:

.vs/

【讨论】:

注意:有些人在使用这个答案时遇到了问题。如果有人有时间检查它,请添加评论。 : - ) 这个工作,检查它。 @NickWestgate github desktop 提供了一个很好的预览,如果您不确定,将提交给 repo 的内容。 请注意,此解决方案会忽略 任何名为 .vs 的文件夹(并且您不需要尾部斜杠),即使在子目录中也有。 @ChaimEliyah 的回答只忽略了根目录下的.vs 文件夹 @bobobobo 感谢您的检查。我使用了 Chaim Eliyah 的回答(并对此发表了评论)。【参考方案5】:

我遇到了这个问题,我找到了一种简单的方法来解决“git 已经跟踪文件”的问题。

    将您 PC 上 git 文件夹中的所有相关文件备份到一个单独的位置(如果您没有指定其他位置,通常类似于 c:/user/source/repos)。

    李>

    删除git文件夹中所有相关文件。

    打开 Visual Studio 并将此删除推送到服务器。

    将所有文件粘贴回去。

    将此推送到服务器。

这应该是摆脱所有这些临时文件以及您在 .gitignore 上为已跟踪的在线 git 文件夹指定的任何其他内容的简单方法。

【讨论】:

【参考方案6】:

在将任何内容提交到我的存储库之前,我遇到了这个问题。我错误地认为仅在目录中包含 .gitignore 文件会阻止 VS 将文件识别为“更改”。您必须先提交 .gitignore 文件,然后 git 才会开始忽略其中指定的文件。

【讨论】:

【参考方案7】:

我通常在开始时添加 .vs,当 repo 是干净的时。但我可以确认 git 服从:

.vs

在 .gitignore 中。

正如其他人所说,在本地删除,然后提交/推送。

【讨论】:

【参考方案8】:

这个答案与上面的答案相似,但详细说明了 valid .gitignore 文件就位时的实际步骤,但 items 已被检入分支 并且它们出现在原始存储库。

    如果已签入.vs 目录,请验证当前分支中的任何内容均未从该目录暂存。如果是这样,请取消暂存。 转到具有.vs 的目录的级别。 运行此命令:git rm --cached -r .vs。 此时您应该会看到 .vs 目录下的文件已被删除。 暂存并创建提交。 将提交推送到原点。

【讨论】:

以上是关于Gitignore 不会忽略 Windows7/8 上 Visual Studio 2015 RC 的 .vs 文件夹的主要内容,如果未能解决你的问题,请参考以下文章

当 .gitignore 中未忽略 node_modules 文件夹时,为啥 Git 不会添加/提交文件?

.gitignore

Git忽略规则.gitignore梳理

Git忽略规则.gitignore梳理

Git忽略规则.gitignore梳理

Git忽略规则.gitignore梳理