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


#1楼

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

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

#2楼

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

美丽。


#3楼

对于那些对微软认为应该包含在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

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


#4楼

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

[Oo]bj
[Bb]in
*.user
*.suo
*.[Cc]ache
*.bak
*.ncb
*.log
*.DS_Store
[Tt]humbs.db
_ReSharper.*
*.resharper
Ankh.NoLoad

#5楼

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

*.dll
*.exe
*.exp
*.ilk
*.lib
*.ncb
*.log
*.pdb
*.vcproj.*.user
[Dd]ebug
[Rr]elease

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


#6楼

感谢Jens Lehmann这个 - 如果您将源目录与编译器项目文件分开并构建输出,您可以通过否定它来简化您的.gitignore:

path/to/build/directory/*
!*.sln
!*.vcproj

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


#7楼

正如另一张海报所提到的,Visual Studio将其作为其.gitignore的一部分生成(至少对于MVC 4):

# SQL Server files
App_Data/*.mdf
App_Data/*.ldf

由于您的项目可能是解决方案的子文件夹,并且.gitignore文件存储在解决方案根目录中,因此实际上不会触及本地数据库文件(Git在projectfolder/App_Data/*.mdf看到它们)。 为了解释这一点,我改变了这样的行:

# SQL Server files
*App_Data/*.mdf
*App_Data/*.ldf

#8楼

有一个在线工具,允许您根据您的操作系统,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

#9楼

这是我在.NET项目中用于.gitignore文件的内容。

[Oo]bj/
[Bb]in/
*.suo
*.user
/TestResults
*.vspscc
*.vssscc

这几乎是所有MS方法,它使用内置的Visual Studio测试程序,以及可能在其中具有一些TFS绑定的项目。


#10楼

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

#11楼

Visual Studio中有一个快捷方式 ,因为它在2015年或更高版本中支持开箱即用的Git。 对于新解决方案(或某些没有.git文件夹),请在解决方案资源管理器中使用源代码管理功能:

右键单击解决方案, 然后在弹出菜单中选择Add Solution to Source Control...项。

它会自动初始化.git存储库,将.gitignore与必要的东西添加到您的解决方案甚至.gitattributes文件(行结尾等)。

该文本将出现在VS控制台中:

A new Git repository has been created for you in C:\<path to your solution>
Commit ______ created locally in repository.

完成!


#12楼

在Visual Studio 2015团队资源管理器>本地Git存储库>项目>设置> Git>存储库设置>忽略和属性文件中。默认情况下,您可以在visual studio解决方案中添加带有项目的.gitignore文件。


#13楼

我知道这是一个老问题,仍在分享信息。 在Visual Studio 2017中,您只需右键单击解决方案文件,然后选择“ 将解决方案添加到源代码管理”

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

  1. .gitattributes
  2. 的.gitignore

这是最简单的方法。


#14楼

为构建部署添加了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
~$*

#15楼

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

#NuGet
packages/

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


#16楼

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

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

bin/
obj/
*.suo
*.user

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

_ReSharper*

#17楼

请参阅官方GitHub的“有用的.gitignore模板集合” 。

可以在此处找到Visual Studio的.gitignore
https://github.com/github/gitignore/blob/master/VisualStudio.gitignore


#18楼

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

#Visual Studio DB Project
*.dbmdl
[Ss]ql/

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

.gitignore for Visual Studio项目和解决方案相关推荐

  1. 【C++】Visual Studio教程(十一) -解决方案和项目

    00. 目录 文章目录 00. 目录 01. 项目 02. 项目文件 03. 创建新项目 04. 解决方案 05. 解决方案文件 06. 解决方案文件夹 07. 解决方案资源管理器 08. 附录 01 ...

  2. Visual Studio项目版本转换器(c#项目版本转换器 v1.0)

    Visual Studio项目版本转换器(c#项目版本转换器 v1.0) 使用截图: 下载地址:http://files.cnblogs.com/stone_w/VsConvert.zip vs转换中 ...

  3. visual studio项目 .sln .vcxproj .vcproj 文件的区别和关系

    sln是解决方案的配置,主要是管理这个方案里的多个vcxproj vcxproj是工程的配置文件,管理工程中细节比如包含的文件,引用库等 一般没有sln,也可以直接打开vcxproj,也可以重新生成s ...

  4. visual studio项目 .sln .vcxproj .vcproj 文件的区别和关系

    问题 一个开源工程,不知道其使用的VS版本,用VS2015打开,发现有两类工程文件,.vcproj和.vcxproj *.vcproj:VS2008以及VS2008之前版本的VS工程文件 *.vcxp ...

  5. Visual Studio 项目目录下的bin目录和 obj目录

    一.Bin目录 Visual Studio 编译时,在bin 目录下有debug 和 release 目录. 1.Debug: 通常称为调试版本,它包含调试信息,所以要比Release 版本大很多(可 ...

  6. Visual Studio 重新生成解决方案 无反映

    Visual Studio 重新生成解决方案 无反映 参考文章: (1)Visual Studio 重新生成解决方案 无反映 (2)https://www.cnblogs.com/LeeYongze/ ...

  7. visual C++ 项目和解决方案的区别

    visual C++ 项目和解决方案的区别 参考文章: (1)visual C++ 项目和解决方案的区别 (2)https://www.cnblogs.com/roucheng/p/cppxiangm ...

  8. 查看visual studio 项目是哪个版本的VS

    查看visual studio 项目是哪个版本的VS 用notepad++ 打开项目的.sln文件就可以看到:

  9. 探究Visual Studio项目的当前目录

    本文的缘起是我要用 OpenCV 库中的函数读取本地的图像,但是在文件路径名上碰到了一点挫折.本文探究 Visual Studio 2019 项目的当前目录.牵涉到计算机科学与技术的三个概念:当前目录 ...

最新文章

  1. [转] 三层开发中的层次划分
  2. Hadoop基本流程与应用开发
  3. mysql存储map数据结构_map数据结构
  4. 这家总资产排名第一的银行,为什么叫“小”摩?
  5. ACE主动对象模式学习
  6. 腾讯优图×厦大联队夺冠全球AI医疗大赛!刷新肝脏肿瘤影像分割世界纪录
  7. Android中的USB中的UsbAccessory和UsbDevice的区别
  8. linux如何查看vlan信息,dhcp – 通过tcpdump在数据包捕获(Linux)中未显示VLAN标记
  9. micropython开发idethonny_esp32 micropython using uPycraft IDE
  10. 用vins_mono运行kitti(raw data)数据集并用evo评估。
  11. 尔雅通识课题库【1】
  12. python如何取消上一步操作的快捷键_ai返回上一步的快捷键是什么
  13. 宝马 OR 奥迪?NONONO,还得看我Li Auto,新款六座SUV强势来袭
  14. JS 实现数字转换为大写中文金额
  15. debian8文件服务器,debian 8 下部署开发环境
  16. uniapp 视频图片切换,视频高度宽度自适应
  17. java excel 模板 替换_java替换Excel字符
  18. 1325208-25-0,Mal-PEG4-NHS马来酰亚胺基团和NHS酯基团交联剂
  19. TI公司示例下载方式
  20. 传输线理论(一)传输线参量

热门文章

  1. Kotlin一大特色之空安全
  2. springboot处理参数再转发请求_SpringBoot图文教程6—SpringBoot中过滤器的使用
  3. oc怎么添加win引导_OC图像纹理节点和透明贴图的使用方法
  4. hfss matlab联合仿真_一文搞定matlab 与 STK 联合调试仿真环境配置(文末附软件下载链接)...
  5. JavaScript语言基础9
  6. swift_037(Swift之Swift和OC混编)
  7. (0027)iOS 开发之调整导航条上BarButtonItem与屏幕边界的间距
  8. [转载]什么情况下应该设置 cudnn.benchmark = True?
  9. 消息队列 RabbitMQ
  10. oracle建表权限问题和JSP连接oracle数据库基本操作