.gitignore for Visual Studio项目和解决方案

Mar*_*nek 1115 git gitignore visual-studio visual-studio-2012

.gitignore将Git与Visual Studio Solutions(.sln)和Projects 结合使用时,我应该包含哪些文件?

Chr*_*ial 574

请参阅官方GitHub的"有用的.gitignore模板集合".

.gitignore为Visual Studio可以在这里找到:
https://github.com/github/gitignore/blob/master/VisualStudio.gitignore

  • 好吧,我不知道(足够?)说出它的错误.我刚刚使用Publish /作为Controller名称,以及作为项目文件夹名称.我认为这只是一个边缘案例.只需要节省几个小时的生命:) (9认同)
  • 请注意.此文件包含忽略已发布文件的条目.无论编写规则的方式是什么,它都会忽略你称之为"发布"的任何文件夹,并且在此之前会忽略你所拥有的任何内容.它没有专门针对Visual Studio"发布"输出.它会忽略它,但也会忽略它. (8认同)
  • @starfighterxyz如果您认为gitignore中存在错误,我建议您创建一个拉取请求. (5认同)
  • @Learner因为它们在不同的文件中.您应该将这些添加到您的个人全球gitignore中,而不是将其签入.https://github.com/github/gitignore/tree/master/Global (2认同)

Mar*_*tin 241

有一个在线工具,允许您根据您的操作系统,IDE,语言等生成.gitignore文件.请查看http://www.gitignore.io/.

在此输入图像描述

2014年8月20日,这是为Visual Studio + Windows生成的文件.

# Created by http://www.gitignore.io

### VisualStudio ###
## 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/
[Dd]ebugPublic/
[Rr]elease/
[Rr]eleases/
x64/
x86/
build/
bld/
[Bb]in/
[Oo]bj/

# Roslyn cache directories
*.ide/

# 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

*_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
*.opensdf
*.sdf
*.cachefile

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

# 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 addin-in
.JustCode

# TeamCity is a build add-in
_TeamCity*

# DotCover is a Code Coverage Tool
*.dotCover

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

# 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/
# If using the old MSBuild-Integrated Package Restore, uncomment this:
#!**/packages/repositories.config

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

# Windows Store app package directory
AppPackages/

# Others
sql/
*.Cache
ClientBin/
[Ss]tyle[Cc]op.*
~$*
*~
*.dbmdl
*.dbproj.schemaview
*.pfx
*.publishsettings
node_modules/

# 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/


### Windows ###
# Windows image file caches
Thumbs.db
ehthumbs.db

# Folder config file
Desktop.ini

# Recycle Bin used on file shares
$RECYCLE.BIN/

# Windows Installer files
*.cab
*.msi
*.msm
*.msp
Run Code Online (Sandbox Code Playgroud)


Lac*_*che 110

我在C#项目中使用以下.gitignore.在需要时添加其他模式.

[Oo]bj
[Bb]in
*.user
*.suo
*.[Cc]ache
*.bak
*.ncb
*.log 
*.DS_Store
[Tt]humbs.db 
_ReSharper.*
*.resharper
Ankh.NoLoad
Run Code Online (Sandbox Code Playgroud)

  • @PerLundberg值得考虑的一个原因是您可以配置标准项目格式选项等,并使用项目保存配置文件.如果这是在git中,那么使用Resharper的每个人都可以更轻松地保持项目的格式一致. (4认同)
  • 不同意`*.resharper`.匹配`*.ReSharper.user`的文件应该被忽略,但是上面的`*.user`规则可以满足这些要求. (2认同)
  • @DrewNoakes:您认为应该进行修订控制的 ReSharper 文件是什么? (2认同)

foo*_*baz 58

使用 Visual Studio 添加 .gitignore

\n

打开 Visual Studio 和需要忽略文件的解决方案。从顶部菜单中选择Git > 设置。

\n

在此输入图像描述

\n

上面的命令将打开 Visual Studio\xe2\x80\x99s 选项,并选择“源代码管理”>“Git 全局设置”。从左侧列表中选择“Git 存储库设置”,然后单击“忽略文件”“添加”按钮。

\n

在此输入图像描述

\n

上面的代码将添加(并进行提交)一个 .gitignore 文件,并在典型的 Visual Studio 设置中忽略所有正确的文件。

\n

https://elanderson.net/2020/10/add-git-ignore-to-an-existing-visual-studio-solution-new-git-experience/

\n

请注意,如果您的存储库根目录中已有 .gitignore 文件,则“添加”按钮将显示“编辑”,并且按下该按钮将仅打开该文件而不更新它,这不是很有帮助。在这种情况下,您可以先重命名 .gitignore 文件,单击“添加”按钮,取消暂存新的 .gitignore 文件,然后根据需要合并已保存的副本更改。

\n

  • 将 gitignore 添加到您的存储库后,不要忘记。清理你的缓存文件。1. `git rm -r --cached .` 2. `git add .` 3. `git commit -m "删除忽略的文件"` (3认同)

Mob*_*ent 45

对于那些对微软认为应该包含在gitignore中的内容感兴趣的人来说,这是Visual Studio 2013 RTM在创建新的Git-Repository时自动生成的默认值:

## 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
sql/
*.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
Run Code Online (Sandbox Code Playgroud)

请参阅:在MSDN上添加默认的.gitignore文件


sgr*_*usa 37

虽然您应该保留NuGet packages.config文件,但应该排除packages文件夹:

#NuGet
packages/
Run Code Online (Sandbox Code Playgroud)

我通常不会在源代码管理中存储二进制文件或从我的源代码生成的任何内容.然而,对此有不同的意见.如果它使您的构建系统更容易,那就去做吧!但是,我认为你没有对这些依赖项进行版本控制,因此它们只会占用你的存储库中的空间.在我看来,将二进制文件存储在一个中心位置,然后依赖packages.config文件来指示需要哪个版本是一个更好的解决方案.

  • 值得注意的是,NuGet团队为这个问题实现了"包恢复"功能.在NuGet网站上有一个**[文档](http://docs.nuget.org/docs/workflows/using-nuget-without-committing-packages)**,它解释了该功能并描述了如何在Visual中使用它工作室. (14认同)
  • 有人想详细说明你为什么要排除包文件夹?包含构建服务器的包以包含依赖项是否有意义? (4认同)
  • 如果您忽略包并使用nuget包还原,则允许nuget.exe很有帮助.当有人下载​​时,这告诉帮助VS告诉该解决方案已启用该功能:`!NuGet.exe` < - 不要忽略此文件. (4认同)

Ebe*_*eer 18

我更喜欢根据需要排除事物.你不想用猎枪在名字中用字符串"bin"或"obj"排除所有内容.至少一定要跟随斜线.

这是我在VS2010项目上的开始:

bin/
obj/
*.suo
*.user
Run Code Online (Sandbox Code Playgroud)

只是因为我使用ReSharper,这也是:

_ReSharper*
Run Code Online (Sandbox Code Playgroud)


小智 11

在Visual Studio 2015 Update 3上,并且今天(2016-10-24)更新了Git扩展,Visual Studio生成的.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/
[Xx]64/
[Xx]86/
[Bb]uild/
bld/
[Bb]in/
[Oo]bj/

# 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
*.VC.db

# 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: Un-comment the next line if you do not want to checkin 
# your web deploy settings because they may include unencrypted
# passwords
#*.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/

# Microsoft Azure ApplicationInsights config file
ApplicationInsights.config

# Windows Store app package directory
AppPackages/
BundleArtifacts/

# 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/
[Ss]tyle[Cc]op.*
~$*
*~
*.dbmdl
*.dbproj.schemaview
*.pfx
*.publishsettings
node_modules/
orleans.codegen.cs

# 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

# LightSwitch generated files
GeneratedArtifacts/
ModelManifest.xml

# Paket dependency manager
.paket/paket.exe

# FAKE - F# Make
.fake/
Run Code Online (Sandbox Code Playgroud)

  • 我喜欢这部分:`备份和报告文件,将旧的项目文件转换为较新的Visual Studio版本。不需要备份文件,因为我们有git ;-)` (3认同)

Sib*_*enu 10

我了解这是一个古老的问题,仍在共享信息。在Visual Studio 2017中,您可以右键单击解决方案文件并选择将解决方案添加到源代码管理

在此处输入图片说明

这会将两个文件添加到您的源文件夹。

  1. .gitattributes
  2. .gitignore

这是最简单的方法。


Lan*_*and 9

为构建部署添加了InstallShield忽略.InstallShield是Microsoft领导Visual Studio Installer的新方向,因此我们已开始在所有新项目中使用它.此添加的行将删除SingleImage安装文件.其他InstallShield类型可能包括DVD分发等.您可能希望添加这些目录名称或仅[Ee] xpress /以防止任何InstallShield LE部署文件进入仓库.

以下是使用Install Shield LE和安装程序的SingleImage部署的VS2010 C#项目的.gitignore:

#OS junk files
[Tt]humbs.db
*.DS_Store

#Visual Studio files
*.[Oo]bj
*.exe
*.pdb
*.user
*.aps
*.pch
*.vspscc
*.vssscc
*_i.c
*_p.c
*.ncb
*.suo
*.tlb
*.tlh
*.bak
*.[Cc]ache
*.ilk
*.log
*.lib
*.sbr
*.sdf
ipch/
obj/
[Bb]in
[Dd]ebug*/
[Rr]elease*/
Ankh.NoLoad

#InstallShield
[Ss]ingle[Ii]mage/
[Dd][Vv][Dd]-5/
[Ii]nterm/

#Tooling
_ReSharper*/
*.resharper
[Tt]est[Rr]esult*

#Project files
[Bb]uild/

#Subversion files
.svn

# Office Temp Files
~$*
Run Code Online (Sandbox Code Playgroud)


Ham*_*deh 8

在Visual Studio 2015年团队资源管理器 - >本地Git仓库>项目>设置>的Git>库设置>忽略和属性Files.You可以添加的.gitignore文件,项目应在默认情况下,Visual Studio中的解决方案被忽略. 在此输入图像描述

在此输入图像描述


Nat*_*han 7

我知道这是一个旧线程,但对于访问此页面的新老网站,有一个名为gitignore.io的网站可以生成这些文件.在登陆网站时搜索"visualstudio",它将为您生成这些文件,您也可以将多个语言/标识忽略连接到一个文档中的文件.

美丽.


Bri*_*ell 6

这是.gitignore我正在研究的最近项目的摘录.我已经提取了我认为与Visual Studio相关的内容,包括编译输出; 它是一个跨平台项目,因此其他构建系统生成的文件还有其他各种忽略规则,我无法保证将它们完全分开.

*.dll
*.exe
*.exp
*.ilk
*.lib
*.ncb
*.log
*.pdb
*.vcproj.*.user
[Dd]ebug
[Rr]elease
Run Code Online (Sandbox Code Playgroud)

也许这个问题应该是社区Wiki,所以我们都可以一起编辑一个主列表,其中包含关于哪些类型的项目应该忽略哪些文件的注释?

  • @JimRaden一般来说,最好避免将二进制工具检入Git.最佳做法是仅向Git检查您的来源; 如果您需要二进制工具,请包含用于安装它们的脚本或仅包含这些工具的子模块. (2认同)

Ste*_*lly 6

感谢莱曼的这一个 -如果你把源目录划分到你的编译器项目文件和构建输出,你可以通过否定它简化你的.gitignore:

path/to/build/directory/*
!*.sln
!*.vcproj
Run Code Online (Sandbox Code Playgroud)

您没有说出您正在使用的语言,但上述内容适用于C++项目.


dan*_*wig 6

晚到这里聚会,但我也发现我使用以下内容.有些可能仅用于在推送到公共远程时隐藏敏感文件.

#Ignore email files delivered to specified pickup directory
*.eml

#Allow NuGet.exe (do not ignore)
!NuGet.exe

#Ignore WebDeploy publish profiles
*.Publish.xml

#Ignore Azure build csdef & Pubxml files
ServiceDefinition.build.csdef
*.azurePubxml

#Allow ReSharper .DotSettings (for non-namespace-provider properties)
!*.csproj.DotSettings

#Ignore private folder
/Private/
Run Code Online (Sandbox Code Playgroud)


Wil*_*tak 5

如果您在解决方案中使用dbproj,则需要添加以下内容:

#Visual Studio DB Project
*.dbmdl
[Ss]ql/
Run Code Online (Sandbox Code Playgroud)

资料来源:http: //blogs.msdn.com/b/bahill/archive/2009/07/31/come-visit-revisit-the-beer-house-continuous-integration.aspx


Cha*_*thJ 5

您可以通过转到 Team Explorer 中的 Settings 视图,然后选择 Repository Settings,为您的存储库创建或编辑 .gitignore 文件。为您的 .gitignore 选择编辑。

它会自动创建过滤器,忽略所有 VS 特定的构建目录等。

在此处输入图片说明

更多信息请看这里