【问题标题】:Visual Studio Team Explorer - GIT: Automatically ignoring new filesVisual Studio Team Explorer - GIT:自动忽略新文件
【发布时间】:2018-09-11 12:44:13
【问题描述】:

每当我创建一个新文件(例如类文件 (.cs))时,GIT 都会自动忽略该文件(尽管仍包含在项目中)。是我的 .gitignore 文件还是一些 Visual Studio 设置?一个错误?

有趣的是,我的解决方案下有 7 个项目,只有 1 个项目有这种行为。

为什么我认为它被忽略而不是未被跟踪?答案如下:

1- 通常,Visual Studio 将跟踪所有新的 .cs 文件,这就是它在我所有项目中所做的,除了这个。

2- 新文件的版本控制状态图标是一个红色圆圈(中间有一个矩形),如果将鼠标悬停在上面将显示“已忽略”一词。此外,如果我右键单击该文件,我可以看到“将忽略的文件添加到源代码管理”选项。

这是 .gitignore 文件(与 .git 文件夹位于同一文件夹):

## 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
*.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/
.vscode/
# 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

# .NET Core
project.lock.json
project.fragment.lock.json
artifacts/
**/Properties/launchSettings.json

*_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
*.VC.VC.opendb

# 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

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

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

# 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

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

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

# Typescript v1 declaration files
typings/

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

# JetBrains Rider
.idea/
*.sln.iml

# CodeRush
.cr/

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

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

# Telerik's JustMock configuration file
*.jmconfig

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

【问题讨论】:

  • 我认为 Git 的标准行为是将新文件视为未跟踪,直到您手动添加它们。
  • 如果您没有在此处包含 .gitignore 或更多信息,我们只能猜测。
  • @Esko 我花了一段时间,但 git 文件在那里。抱歉耽搁了
  • 你能解释一下“自动忽略”是什么意思吗?您在哪里看到它被忽略(而不是像@TimBiegeleisen 指出的那样未被跟踪)? git status 的输出是什么?
  • @bto,新文件的版本控制状态图标是一个红色圆圈(中间有一个矩形),如果将鼠标悬停在上面会显示“忽略”字样。此外,如果我右键单击该文件,我会看到“将忽略的文件添加到源代码管理”选项

标签: git visual-studio visual-studio-2017 team-explorer


【解决方案1】:

尤里卡!!我的项目名称与 .gitignore 文件上的模式 *.sap 匹配,因此该项目上的所有新文件都将被自动忽略。我从 .gitignore 文件中删除了 *.sap 模式,现在一切正常。

【讨论】:

  • 我正在与 SAP concur 合作开展一个项目。我正在挠头,然后我看到了这个答案。这是我的问题。项目名称以 .SAP 结尾
【解决方案2】:

它不时发生。只需关闭并重新打开 Visual Studio。

由于这种不一致(我认为这是一个错误),我还在另一个“可视” git 应用程序(SourceTree)中寻找未跟踪的文件,以确保在某个目录中没有留下任何东西。

【讨论】:

  • 在我的情况下它永远不会消失,即使重新启动 VS
【解决方案3】:

我在本地测试了您的.gitignore 文件,它工作正常。我最好的猜测是您需要暂存文件。我认为您将忽略的文件与未跟踪的文件混淆了。

Git 被分成三个“目录”。当您“跟踪”一个文件时,这意味着保留这三个目录之间的更改。忽略的文件不会被跟踪。

工作目录 工作目录基本上就是您硬盘上的内容。 Git 将跟踪工作目录和暂存区之间文件和文件夹的差异。 未跟踪的所有内容都在工作目录中。对跟踪文件的每一次更改都包含在工作目录中。

暂存区 每当您“上演”某事(通过使用git add)时,您就可以上演更改。这意味着您将更改从工作目录复制到暂存区域。当您暂存文件或文件夹时,文件会保存在工作目录(即硬盘)中,但也会复制到暂存区域。

暂存区是提交和未跟踪文件之间的一种中间地带。您需要先暂存文件,然后才能提交它们。

当地分支机构 当您提交某些内容时,您将获取当前 staged 的任何内容,并进行 commit,并将该提交附加到当前分支。这也会从暂存区中移除变更集。

【讨论】:

  • 感谢@Andersnk 的解释,但是,使用 Visual Studio 时的流程有所不同。通常在 VS 中,一个新文件将被自动跟踪并包含在源代码管理中(我假设 VS 会自动暂存它),只剩下提交它的最后一步。
  • Visual Studio 将不会自动跟踪文件,也不会暂存它们,除非您安装了为您执行此操作的插件。
  • 我正在使用 Visual Studio 的 Team Explorer 并且没有安装任何插件。我已经像这样使用 VS 和 GIT 一年多了,新文件总是显示在准备提交的“更改”部分中。这就是我所说的自动跟踪它们的意思。 VS 在幕后执行什么命令我不知道。
  • 好吧,你的插件可能坏了。损坏的不是您的 .gitignore 文件。
猜你喜欢
  • 2023-03-28
  • 2016-05-12
  • 2016-12-05
  • 2015-10-02
  • 2023-03-02
  • 2020-05-13
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
相关资源
最近更新 更多