web-dev-qa-db-ja.com

Visual Studioのプロジェクトおよびソリューション用の.gitignore

GitをVisual Studio Solutions(.gitignore)およびProjectsと組み合わせて使用​​する場合、どのファイルを.slnに含める必要がありますか?

1085
Martin Suchanek

公式GitHubの "便利なコレクション .gitignore templates" を見てください。

Visual Studioの.gitignoreはここにあります。
https://github.com/github/gitignore/blob/master/VisualStudio.gitignore

555
Chronial

あなたのOS、IDE、言語などに基づいて.gitignoreファイルを生成することを可能にするオンラインツールがあります。 http://www.gitignore.io/ を見てください。

enter image description here

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
229
Martin

C#プロジェクトには次の.gitignoreを使用します。必要に応じて追加のパターンが追加されます。

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

Microsoft がgitignoreに含まれるべきであると思うものに興味がある人のために、新しいGit-Repositoryを作成するときにVisual Studio 2013 RTMが自動的に生成するデフォルトのものがあります。

## 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ファイルを追加してください

45
Mobiletainment

NuGet packages.configファイルを保存しておく必要がありますが、packagesフォルダーは除外する必要があります。

#NuGet
packages/

私は通常、バイナリや私のソースから生成されたものをソース管理に保存しません。しかしこれについては異なる意見があります。それがあなたのビルドシステムにとって物事をより簡単にするなら、それをしなさい!しかし、私はあなたがこれらの依存関係をバージョン管理していないと主張するでしょう、それで彼らはあなたのリポジトリのスペースを占有するでしょう。私の考えでは、バイナリを中央の場所に保存してからpackages.configファイルを使用してどのバージョンが必要かを示したほうがよいでしょう。

37
sgriffinusa

私は必要に応じて物事を除外することを好みます。名前に "bin"や "obj"という文字列が含まれているものすべてをショットガンから除外したくはありません。 少なくとも 必ずスラッシュを付けてください。

これが私がVS2010プロジェクトで始めたものです:

bin/
obj/
*.suo
*.user

そして私がReSharperを使っているからこそ、これも:

_ReSharper*
16
Eben Geer

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

追加のInstallShieldがビルドデプロイメントを無視するようになりました。 InstallShieldは、MicrosoftがVisual Studio Installerに向かっているという新しい方向性なので、すべての新しいプロジェクトでそれを使い始めました。この追加された行はSingleImageインストールファイルを削除します。他のInstallShieldタイプには、とりわけDVD配布が含まれる場合があります。 InstallShield LEデプロイメントファイルがリポジトリに入らないようにするには、それらのディレクトリ名を追加するか、または[Ee] xpress /を追加することをお勧めします。

以下は、インストーラにSingleImage展開を適用したInstall Shield LEを使用した、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
~$*
9
Lance Cleveland

これは私が取り組んでいた最近のプロジェクトの.gitignoreからの抜粋です。私は、コンパイルアウトプットを含めて、私がVisual Studioに関連していると思うものを抽出しました。これはクロスプラットフォームプロジェクトなので、他のビルドシステムによって生成されたファイルには他にもさまざまな無視ルールがあり、それらを正確に分離したことを保証することはできません。

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

たぶん、この質問はコミュニティWikiであるべきです、それで我々は皆、どのファイルがどのタイプのプロジェクトのために無視されるべきであるかについてのコメントと共に1つのマスターリストを編集することができますか?

6
Brian Campbell

Visual Studio 2015チームエクスプローラ>ローカルGitリポジトリ>プロジェクト>設定> Git>リポジトリ設定>無視および属性ファイルの順に選択します。アイテムを含む.gitignoreファイルは、デフォルトでは無視する必要があります。 enter image description here

enter image description here

6

私はこれが古いスレッドであることを知っていますが、このページを訪れる新しい人と古い人のために、これらのファイルを生成できる gitignore.io というウェブサイトがあります。ウェブサイトに着陸した際に "visualstudio"を検索すると、これらのファイルが自動的に生成されます。また、複数の言語/ IDが1つの文書に連結されたファイルを無視するようにすることもできます。

綺麗な。

6
Nathan

Jens Lehmannの功績によるものです。 - ソースディレクトリをコンパイラプロジェクトファイルとは別にして出力を構築する場合は、.gitignoreを無効にすることで単純化できます。

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

どの言語を使っているのかはわかりませんが、上記のコードはC++プロジェクトでも機能するはずです。

6
Steve Folly

ここのパーティーに遅刻しますが、私はまた、私が以下を使うのを見つけます。 public リモートにプッシュするときに機密ファイルを隠すのに役立つだけのものもあります。

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

ソリューションで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

5
Will Tartak

私はこれが古い質問で、まだ情報を共有していることを理解しています。 Visual Studio 2017では、ソリューションファイルを右クリックして ソース管理へのソリューションの追加 を選択できます。

enter image description here

これにより、ソースフォルダに2つのファイルが追加されます。

  1. .gitattributes
  2. .gitignore

これが最も簡単な方法です。

4
Sibeesh Venu

Visual Studioには shortcut があります。2015以降ではGit out of the boxをサポートしているためです。新しいソリューション(または.gitフォルダーを持たないもの)の場合は、 Solution Explorer のソース管理機能を使用します。

ソリューションを右クリック して、ポップアップメニューで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.

完了しました。

4
DenisKolodin

これが 私の.NETプロジェクトで使用しているもの.gitignoreファイルです。

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

これはほとんどオールMSのアプローチで、ビルトインのVisual Studioテスターと、TFSバインディングをいくつか持っているかもしれないプロジェクトを使います。

3
Nick Berardi

別のポスターで述べたように、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
3
StevenClontz