我需要在我的.gitignore文件中添加一些规则。但是,我在项目文件夹中找不到它。它不是由Xcode自动创建的吗?如果没有,什么命令允许我创建一个?


默认情况下,.gitignore文件不会添加到存储库中。使用vi或你最喜欢的文本编辑器创建。gitignore文件,然后发出git add .gitignore,后跟git commit -m "message" .gitignore。下面的命令将处理它。

> .gitignore
git add .gitignore
git commit -m "message" .gitignore

这是我个人最喜欢的,http://help.github.com/ignore-files/

另外,如果你想忽略Xcode文件,请参考Git忽略Xcode项目文件的答案。


如果你不想让你的.gitignore文件干扰其他人的存储库,你也可以使用.git/info/exclude(参见http://help.github.com/ignore-files/)。


如果你使用的是Windows,它不允许你在Windows资源管理器中创建一个没有文件名的文件。如果您试图将文本文件重命名为.gitignore,它将提示“您必须输入文件名”

为了解决这个问题,我使用了以下步骤。

创建文本文件gitignore.txt 在文本编辑器中打开它并添加规则,然后保存并关闭 按住Shift键,右键单击你所在的文件夹,然后在这里选择打开命令窗口 然后在命令行中重命名该文件,使用ren gitignore.txt .gitignore

另外,HenningCash在评论中建议:

你可以通过添加一个点来避免这个Windows资源管理器错误 没有扩展名的文件名:.gitignore..这是自动的 改为。gitignore。


在工作中,我们使用的是Windows XP系统,在文件名后面输入句号是行不通的。创建.gitignore文件而不会出现“你必须输入文件名”错误的快速简单的方法是:

打开CMD窗口,输入“edit .gitignore”。 键入“Alt(选择文件菜单),F, s,你现在有一个空的.gitignore文件,无论你的cmd提示符指向哪里。

现在可以用您喜欢的文本编辑器填充它。


非常简单(有时):只需将以下内容添加到您首选的命令行界面(GNU Bash, Git Bash等)

touch .gitignore

正如War在评论中指出的那样,只要你提供完整的路径,触摸在Windows上也可以工作。这可能也解释了为什么它对Windows上的一些用户不起作用:在默认情况下,触摸命令似乎不在某些Windows版本的$PATH中。

C:\> "c:\program files (x86)\git\bin\touch.exe" .gitignore

注意:路径可能不同,取决于您的安装和安装路径。


在Windows资源管理器中创建.gitignore文件最简单的方法是创建一个名为.gitignore的新文件。

这将跳过是否有文件扩展名的验证,因为它实际上有一个空的文件扩展名。


http://gitignore.io是一个开源实用程序,可以帮助您为项目创建有用的.gitignore文件。还有一个可以通过gi命令访问的命令行API: http://gitignore.io/cli

为OS X安装gi命令: $回声”功能gi () {curl http://gitignore.io/api /\$@ ;}" >> ~/.Bash_profile && source ~/.bash_profile 查看.gitignore文件内容(输出:http://gitignore.io/api/xcode,osx): $ gi xcode,osx 如果您想将结果附加到一个新的.gitignore文件中,那么您应该在终端上看到输出。 $ gi xcode,osx >> .gitignore


创建一个.gitignore文件,包含所有你不想提交的文件和目录。

例子:

#################
## Eclipse
#################

*.pydevproject
.project
.metadata
.gradle
bin/
tmp/
target/
*.tmp
*.bak
*.swp
*~.nib
local.properties
.classpath
.settings/
.loadpath

# External tool builders
.externalToolBuilders/

# Locally stored "Eclipse launch configurations"
*.launch

# CDT-specific
.cproject

# PDT-specific
.buildpath


#################
## Visual Studio
#################

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

# 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
*.pubxml

# 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

在Windows中,打开DOS提示符(cmd)窗口,并使用以下命令行:

type > .gitignore

以下是在PowerShell和命令提示符(CMD)中工作的:

echo '*.ignore_me' > .gitignore

我遇到了一个奇怪的问题,Git实际上不会读取.gitignore文件。然后我删除了.gitignore文件,并使用Vim创建了一个工作正常的文件。

要添加其他要忽略的文件,只需调用以下命令:

echo 'another_file_to_ignore' >> .gitignore

它将向现有的.gitignore文件追加更多文件。


要在Xcode中添加任何文件,请转到菜单并导航到 菜单文件→新建→文件…

对于.gitignore文件,选择Other→Empty,然后单击Next。 在Save As字段中输入名称(.gitignore)并单击Create。

对于以点(".")开头的文件,将弹出警告消息,告诉您该文件将被隐藏。只需点击“使用”继续…

这是所有。

为了填充你全新的。gitignore,你可以在这里找到一个忽略Xcode文件的例子


在Windows中

打开记事本。 添加gitignore文件的内容。 点击“另存为”,选择“所有文件”。 保存为。gitignore

容易peasy !不需要命令行!


如果你使用Sublime Text作为你的IDE,你可以创建一个新文件并将其保存为.gitignore。简单地使用Ctrl + N为新文件,并按Ctrl + S保存为“。gitignore”。


我的贡献是针对Mac上的人,它不仅适用于iOS项目(正如提到Xcode的问题所暗示的那样),而且适用于任何类型的项目。


最简单的方法是进入终端,运行vim .gitignore,然后添加文件。通常你可以从GitHub上的一个模板(https://github.com/github/gitignore)复制你需要的东西。

步骤1 在项目中,键入以下命令

vim .gitignore

步骤2 现在,您已经用Vim打开了文件。

按i插入文本。当您在底部看到——INSERT——时,您将看到文件已经准备好了。

第三步(选项一) 对于Objective-C项目,你可以从https://raw.githubusercontent.com/github/gitignore/master/Objective-C.gitignore复制并粘贴到你的。gitignore文件:

按“Esc”键,输入:wq,按“Return”键。保存文件。

步骤3(选项2) 添加任何适用于项目的文件。

如果你不确定要添加什么,在搜索引擎中使用的最佳关键字将包括你的项目类型和文本编辑器。例如,如果你使用Sublime Text,你会想要添加

*.sublime-workspace

如果你在Dreamweaver中使用Cordova项目,你会想要添加

_notes
dwsync.xml

你可以让Xcode在启动新项目时自动生成。

为了做到这一点,你必须自己开始做一些无害的黑客攻击……

开始之前:备份“项目模板”,因为我预测,一旦你发现了它,你会想做的比我刚才提到的更多。

现在,进入/Developer/Library/Xcode/Project Templates/Application/Cocoa Application/ 在那里添加你的.gitignore文件。

这是所有。当你创建一个新的“Cocoa Application”项目时,.gitignore文件会自动从你的项目模板中复制。

注意:如果你想编辑模板本身,请使用nano;不要使用Xcode或TextEdit,因为它们会弄乱Unicode字符!Xcode还搞砸了其他东西。

注意:还有一个“文件模板”,在你开始修改它们之前,你也应该备份它们。再次强调:使用nano编辑它们;不是Xcode也不是TextEdit。

这是我自己的一个。gitignore文件,你可以用它来启发:

.DS_Store
Icon\15
Icon\r
Icon\n
/*.xcodeproj/*.mode*
/*.xcodeproj/*.pbxuser
/*.xcodeproj/TemplateIcon.icns
/*.xcodeproj/.LSOverride
!/*.xcodeproj/default.*
/*.pbproj/*.mode*
/*.pbproj/*.pbxuser
/*.pbproj/*.perspective*
/build/
*.moved-aside
*~.nib
*~.xib

注意:我使用Xcode 2.5和Xcode 3.1.4(我更喜欢3.1,但它一直在我的控制台发送垃圾邮件)


在Windows下有一个不错的提示:

右键单击Windows资源管理器,新建>文本文档 说出来,gitignore。(后面有一个点-这是尖端) 你最终会得到一个。gitignore文件:)

在Windows 7和8下测试。

本技巧假设您的Windows资源管理器显示文件扩展名。


是的,Windows资源管理器不允许您创建此文件名。另一种简单的方法是在目录中创建一个虚拟文件,例如NewFile.txt,然后在Git Bash中简单地重命名它,如下所示:

mv NewFile.txt .gitignore

我用notepad++。使用菜单文件→新建文件→另存为→.gitignore(另存为类型:所有类型(.))


要创建一个.gitignore文件,你只需要创建一个.txt文件并更改扩展名,如下所示:

然后你必须改变名称,在cmd上写以下一行:

 rename git.txt .gitignore

其中git.txt是刚刚创建的文件的名称。

然后,您可以打开该文件并将不想添加到存储库中的所有文件写入。例如,我的是这样的:

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

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

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

# Project files
[Bb]uild/

# Subversion files
.svn

# Office Temp Files
~$*

一旦有了这个,就需要将它添加到Git存储库中。您必须将文件保存在存储库所在的位置。

然后在你的Git Bash中,你必须写下面这行:

如果存储库已经存在,您必须执行以下操作:

Git rm -r——cached。 Git添加。 Git commit -m”。Gitignore现在正在工作"

如果第2步不起作用,那么您应该编写想要添加的文件的整个路由。


Do:

打开Git终端 转到项目的Git存储库 通过触摸.gitignore命令创建一个.gitignore文件 使用git add .gitignore命令添加忽略文件 在ignore文件中设置ignore规则 执行cat .gitignore命令

通过在步骤3中运行命令,您将在项目目录中获得.gitignore文件。


使用cmd创建文件.gitignore的几种方法:

使用copy con命令:

打开cmd并输入cd到Git存储库 输入copy con .gitignore并按Ctrl + Z。

使用start notepad .gitignore命令

打开cmd并输入cd到Git存储库 输入start notepad .gitignore并在打开的notepad对话框中按下Yes按钮。

使用edit .gitignore命令(仅适用于Windows x86)

打开cmd并输入cd到Git存储库 输入edit .gitignore并关闭打开的“edit”编辑器。


您可以在Windows PowerShell中输入new-item .gitignore。


不使用命令行(在Windows上)

打开任何文本编辑器(如记事本)并添加你的规则。 单击菜单“文件→另存为” 保存为”。Gitignore "(包括引文)


在Mac上

你可以创建一个新的文本文件。

使用https://www.gitignore.io/添加内容

保存文件,文件格式为-富文本文档与附件。

将文件名更改为.gitingore 并选择使用“。”当弹出弹出如图所示的图像。

注意:由于它是一个隐藏文件,您将无法在目录中看到它。但它会被创造出来。


使用Git Bash控制台。

导航到您的项目 输入touch .gitignore

将为您创建.gitignore文件。


在Windows上,你可以使用cmd:

回声

或者使用Git Bash cmd:

你. gitignore,

这对于Linux和Mac系统很有用。


我还有一个简单的想法。

让我们使用cmd中的echo命令,

Echo ./idea > .gitignore

这将创建文本内容为“./idea”的.gitignore文件。

现在可以使用文本编辑器手动更改文件中的数据。

或者简单地

控制台:

echo .gitignore notepad.exe

立即编辑gitignore。

如果你不知道你的IDE或操作系统应该忽略哪些文件,请访问www.gitignore.io。

gitignore。IO -在这里它将生成gitignore命令或文本。只要说你的API或OS。就是这样!复制粘贴到你的文件中。简单!


macOS和Linux一行程序

一个简单的方法是在终端上使用curl命令来获得默认的Git忽略,而不需要创建/复制/粘贴。首先cd到你的项目根目录,然后运行命令,将MY_API_NAME替换为以下两个来源之一的API名称:

gitignore.io

curl -o .gitignore https://www.toptal.com/developers/gitignore/api/MY_API_NAME

您可以通过在列表中搜索并单击Generate找到API名称。

Java示例:

curl -o .gitignore https://www.toptal.com/developers/gitignore/api/java

GitHub

或者,你也可以在GitHub上使用。在这里找到API的文件名。

curl -o .gitignore https://raw.githubusercontent.com/github/gitignore/master/MY_API_NAME.gitignore

Java示例:

curl -o .gitignore https://raw.githubusercontent.com/github/gitignore/master/Java.gitignore

窗户

下面是一些类似的Windows替代品。

如何在Windows上安装/设置和使用cURL ? Wget/cURL替代本机Windows?

但说实话,设置这个看起来比它值得更多的麻烦。如果我有Windows,那么我只会在我的项目的根文件夹中创建一个名为.gitignore的空文件,然后复制并粘贴gitignore的默认文本。io或GitHub。


我也想贡献自己的力量。这次是动画版:)

Vim(迷你教程):

i   - start editing
ESC - get back to normal mode
:w  - save
:q  - quit


有一种非常简单的方法可以创建.gitignore文件。这个是在GitHub上创建的,我很确定大多数源代码控制程序都提供了在那里创建文件的功能。

我附上了一个图片的图片教程作为参考。


窗口:

在命令行中:

.>.gitignore

这将显示一个错误,但它将工作。


您可以直接创建一个空的.gitignore文件。在你需要添加该文件的位置打开cmd,并键入以下命令:

copy con .gitignore

按回车。我们现在处于新创建文件的编辑模式,但现在不需要添加任何东西。只需按F6,然后按Enter。

现在您有了一个空的.gitignore文件。在您拥有的任何编辑器中编辑您的文件。


窗户

文件名:“。gitignore”, 保存为类型:所有文件(.)


下面是Windows中Linux“触摸”的一行程序版本

cd c:\<folder>\break
> .gitignore

这将创建一个空白的.gitignore文件,您可以在其中编辑和添加要忽略的项。

cd C:\Users\test
dir .gitignore

输出:

 Volume in drive C is Windows
 Volume Serial Number is 9223-E93F

 Directory of C:\Users\test

18/04/2019  02:23 PM                 0 .gitignore
               1 File(s)              0 bytes
               0 Dir(s)  353,009,770,496 bytes free

在Mac:

打开终端并运行默认值,写入com.apple.finder AppleShowAllFiles YES任意位置。 重新启动Finder,这样你就可以看到隐藏的文件:命令+选项+转义→重新启动

然后创建一个文本文件,您将能够将文件扩展名更改为.gitignore。


我意识到这个问题的重点是如何“创建”gitignore文件,但如果有人有兴趣在文件创建后快速添加内容,这里是我使用GitHub Desktop为那些试图“忽略”出现在他们的更改列表中的文件的答案。

对代码进行更改会在存储库中产生不必要的更改。 去GitHub桌面和你的存储库。 选择所有更改并右击它们。 将更改添加到gitignore文件中。


要将.gitignore文件添加到你的not应用程序中,可以使用

> npx add-gitignore

现在你可以输入“node”,并使用用户空格键选择它并进入。 这会将节点.gitignore添加到项目中。


你可以去为你的项目创建有用的。gitignore文件。

选择IDE、操作系统或编程语言。它会自动为你生成一个。


在Ubuntu中,你可以创建.gitignore文件,并从当前目录中添加(忽略)所有超过50mb的文件,.,使用:

find . -size +100M | cat >> .gitignore

你看过这篇文章吗?

很容易为网络开发者创建。gitignore

它提到了:

从。net Core 3.0开始,你可以利用内置功能 只需在终端中输入dotnet new gitignore即可创建。net框架gitignore文件模板。

我刚刚尝试了一下,这是它创建的文件:

## Ignore Visual Studio temporary files, build results, and
## files generated by popular Visual Studio add-ons.
##
## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore

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

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

# Mono auto generated files
mono_crash.*

# Build results
[Dd]ebug/
[Dd]ebugPublic/
[Rr]elease/
[Rr]eleases/
x64/
x86/
[Ww][Ii][Nn]32/
[Aa][Rr][Mm]/
[Aa][Rr][Mm]64/
bld/
[Bb]in/
[Oo]bj/
[Ll]og/
[Ll]ogs/

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

# Visual Studio 2017 auto generated files
Generated\ Files/

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

# NUnit
*.VisualState.xml
TestResult.xml
nunit-*.xml

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

# Benchmark Results
BenchmarkDotNet.Artifacts/

# .NET
project.lock.json
project.fragment.lock.json
artifacts/

# Tye
.tye/

# ASP.NET Scaffolding
ScaffoldingReadMe.txt

# StyleCop
StyleCopReport.xml

# Files built by Visual Studio
*_i.c
*_p.c
*_h.h
*.ilk
*.meta
*.obj
*.iobj
*.pch
*.pdb
*.ipdb
*.pgc
*.pgd
*.rsp
*.sbr
*.tlb
*.tli
*.tlh
*.tmp
*.tmp_proj
*_wpftmp.csproj
*.log
*.vspscc
*.vssscc
.builds
*.pidb
*.svclog
*.scc

# Chutzpah Test files
_Chutzpah*

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

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

# Visual Studio Trace Files
*.e2e

# TFS 2012 Local Workspace
$tf/

# Guidance Automation Toolkit
*.gpState

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

# TeamCity is a build add-in
_TeamCity*

# DotCover is a Code Coverage Tool
*.dotCover

# AxoCover is a Code Coverage Tool
.axoCover/*
!.axoCover/settings.json

# Coverlet is a free, cross platform Code Coverage Tool
coverage*.json
coverage*.xml
coverage*.info

# Visual Studio code coverage results
*.coverage
*.coveragexml

# 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
# Note: 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

# Microsoft Azure Web App publish settings. Comment the next line if you want to
# checkin your Azure Web App publish settings, but sensitive information contained
# in these scripts will be unencrypted
PublishScripts/

# NuGet Packages
*.nupkg
# NuGet Symbol Packages
*.snupkg
# The packages folder can be ignored because of Package Restore
**/[Pp]ackages/*
# except build/, which is used as an MSBuild target.
!**/[Pp]ackages/build/
# Uncomment if necessary however generally it will be regenerated when needed
#!**/[Pp]ackages/repositories.config
# NuGet v3's project.json files produces more ignorable 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
*.appx
*.appxbundle
*.appxupload

# 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
*.jfm
*.pfx
*.publishsettings
orleans.codegen.cs

# Including strong name files can present a security risk
# (https://github.com/github/gitignore/pull/2483#issue-259490424)
#*.snk

# 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
ServiceFabricBackup/
*.rptproj.bak

# SQL Server files
*.mdf
*.ldf
*.ndf

# Business Intelligence projects
*.rdl.data
*.bim.layout
*.bim_*.settings
*.rptproj.rsuser
*- [Bb]ackup.rdl
*- [Bb]ackup ([0-9]).rdl
*- [Bb]ackup ([0-9][0-9]).rdl

# Microsoft Fakes
FakesAssemblies/

# GhostDoc plugin setting file
*.GhostDoc.xml

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

# Visual Studio 6 build log
*.plg

# Visual Studio 6 workspace options file
*.opt

# Visual Studio 6 auto-generated workspace file (contains which files were open etc.)
*.vbw

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

# CodeRush personal settings
.cr/personal

# Python Tools for Visual Studio (PTVS)
__pycache__/
*.pyc

# Cake - Uncomment if you are using it
# tools/**
# !tools/packages.config

# Tabs Studio
*.tss

# Telerik's JustMock configuration file
*.jmconfig

# BizTalk build output
*.btp.cs
*.btm.cs
*.odx.cs
*.xsd.cs

# OpenCover UI analysis results
OpenCover/

# Azure Stream Analytics local run output
ASALocalRun/

# MSBuild Binary and Structured Log
*.binlog

# NVidia Nsight GPU debugger configuration file
*.nvuser

# MFractors (Xamarin productivity tool) working folder
.mfractor/

# Local History for Visual Studio
.localhistory/

# BeatPulse healthcheck temp database
healthchecksdb

# Backup folder for Package Reference Convert tool in Visual Studio 2017
MigrationBackup/

# Ionide (cross platform F# VS Code tools) working folder
.ionide/

# Fody - auto-generated XML schema
FodyWeavers.xsd

##
## Visual studio for Mac
##


# globs
Makefile.in
*.userprefs
*.usertasks
config.make
config.status
aclocal.m4
install-sh
autom4te.cache/
*.tar.gz
tarballs/
test-results/

# Mac bundle stuff
*.dmg
*.app

# content below from: https://github.com/github/gitignore/blob/master/Global/macOS.gitignore
# General
.DS_Store
.AppleDouble
.LSOverride

# Icon must end with two \r
Icon


# Thumbnails
._*

# Files that might appear in the root of a volume
.DocumentRevisions-V100
.fseventsd
.Spotlight-V100
.TemporaryItems
.Trashes
.VolumeIcon.icns
.com.apple.timemachine.donotpresent

# Directories potentially created on remote AFP share
.AppleDB
.AppleDesktop
Network Trash Folder
Temporary Items
.apdisk

# content below from: https://github.com/github/gitignore/blob/master/Global/Windows.gitignore
# Windows thumbnail cache files
Thumbs.db
ehthumbs.db
ehthumbs_vista.db

# Dump file
*.stackdump

# Folder config file
[Dd]esktop.ini

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

# Windows Installer files
*.cab
*.msi
*.msix
*.msm
*.msp

# Windows shortcuts
*.lnk

# JetBrains Rider
.idea/
*.sln.iml

##
## Visual Studio Code
##
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json