Git除了提交未跟踪的文件外,没有添加任何内容来提交提交,即使这些文件已添加到gitignore

时间:2018-10-14 12:29:05

标签: git

我在本地目录中存在我需要的未跟踪文件,但是不想提交到远程仓库(例如obj文件,mtl文件,.vs文件夹等) )。 我有这个.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
*.suo
*.user
*.userosscache
*.sln.docstates
*.obj
*.png
*.log
*.blend
*.blend1
*.mtl
*.jpg
*.jpeg
*.opendb


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

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

# Benchmark Results
BenchmarkDotNet.Artifacts/

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

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

# JustCode is a .NET coding add-in
.JustCode

# TeamCity is a build add-in
_TeamCity*

# DotCover is a Code Coverage Tool
*.dotCover

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

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

# 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

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

# 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

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

正如您所看到的,它清楚地表明我希望git忽略所跟踪的文件。 但我收到此消息:

  

git status在分支default_shader上未跟踪的文件:(使用“ git add   ...”以包含在要提交的内容中

    .gitignore
    .vs/
    3dengine_headeronly.sln
    3dengine_headeronly/
    CMakeLists.txt
    Debug/
    Tests/
    cmake-build-debug/
    packages/
    resources/

我在完全相同的问题上关注this SO post,他们的解决方案是使用.gitignore文件。就我而言,它不起作用:每当我使用git add .git add -A时,都会添加所有文件,无论它们在.gitignore中是否存在。

请注意,我收到git rm -r --cached .之后引用此消息,以取消登台以前添加的不需要的文件。

如何解决该问题?

3 个答案:

答案 0 :(得分:5)

使用此:

git add --all

或者这个:

git add -A

答案 1 :(得分:2)

读取未跟踪文件的列表(这只是您自己引用的引号):

.gitignore
.vs/
3dengine_headeronly.sln
3dengine_headeronly/
CMakeLists.txt
Debug/
Tests/
cmake-build-debug/
packages/
resources/

现在,请注意,这里只有三个名称,不要以斜杠结尾:

  1. .gitignore

    您可能应该添加并提交此文件,因此您可能要做此刻不希望它被跟踪,直到添加并提交它。

  2. 3dengine_headeronly.sln

    此文件未列为“不自动添加也不抱怨未跟踪状态”。自己检查一下:在.gitignore的内容中搜索重新设置3dengine_headeronly.sln的内容。最接近的一项是该组的最后一行:

    # JetBrains Rider
    .idea/
    *.sln.iml
    

    *.sln.iml列为“不自动添加也不抱怨”。但是3dengine_headeronly.sln.sln结尾,而不是.sln.iml。另一行是*.sln.docstates行,但同样以.sln.docstates结尾,文件的实际名称仅以.sln结尾。

  3. CMakeLists.txt

    和以前一样,没有条目会使Git对此关闭。

这使得无法解释的条目以斜杠结尾。诊断此问题的原因在于,Git汇总了这些目录的内容,而不是列出各个文件。只有拥有实际文件名的人才能解释这一点,这需要使用git status-u标志运行--untracked-files=,并给该标志加上单词all来告诉Git分别列出每个未跟踪的文件。

没有此标志...例如,假设Tests包含:

Tests/a.b
Tests/c.d
Tests/e.obj

这三个文件之一与*.obj模式匹配,但是另两个文件与模式不匹配,因此Git会抱怨Tests/a.bTests/c.d未被跟踪。但是如果没有-uall way Git会抱怨这就是说Tests/没有被跟踪。即使Tests/中的每个文件或Tests中的某个子目录的Tests中的每个文件都标记为“请勿抱怨” except ,也是如此:Git将通过打印Tests/来汇总一个文件,因为没有 Tests/内的跟踪文件,但是{{内至少有一个 untracked 文件1}}告诉Git not “关闭此文件”。

有一个非常神秘,一个是Tests/。您的Debug/中确实有此行:

.gitignore

这将导致[Dd]ebug/ 内的所有文件以及Debug内的任何子目录都不被抱怨。不过,使用Debug可能会阐明正在发生的事情。 (请参阅下文,了解为什么这个谜团如此。)

长:-uall如何扫描工作树

重要的是要意识到Git永远不会跟踪目录本身。在git status中列出目录是为了赋予Git权限,而不要检查该目录。

要了解这一点,我们首先需要定义对文件进行跟踪的含义,以及当Git想要为{收集未跟踪文件的列表时,Git如何检查您的工作树。 {1}}抱怨。

在Git中,一个跟踪的文件就是当前在Git索引中列出其名称的任何文件。要查看索引中当前包含哪些文件,可以运行.gitignore(但请注意,在大目录中,这往往会列出文件的 lot )。这些是将在您提交的 next 提交中的文件。最初,索引中包含您最近检出的提交中的所有文件。下一次提交将包含所有相同的文件。如果您覆盖其中一个索引副本,则下一次提交将包含更新的索引副本,而当您git status git ls-files --stage已在索引中的文件时,git add便会这样做。

因此,未跟踪的文件就是工作树中存在的任何文件,但是当前不在索引中。使用git add(带有或不带有git rm),可以从索引中删除任何文件(如果文件当前在索引中)。一旦从索引中删除了它,如果您保留了工作树副本,那么它就变得无法跟踪了。

--cached的作用是进行两个比较-实际上是两个git status。第一个将当前提交冻结的文件与索引的未冻结(但经过Git修饰)的文件进行比较:相同,Git没说什么,有什么不同,Git说: file具有路径名P的阶段已提交。这比列出索引中的每个文件要好得多:仅当下一次提交中的文件不同时,它才会告诉您有关文件 P 的信息。

第二比较比较棘手,它是git diff出现的地方。为了进行第二个比较,Git比较了经过Git验证但尚未冻结的a索引中的文件,以及工作树中的非Git常规副本。当两者不同时,Git会告诉您该文件未上演提交。您可以运行.gitignore将工作树副本复制到索引副本的上方,以使索引和工作树匹配,并且现在可以找到文件的git add提交和索引副本有所不同,因此下一个HEAD会说准备提交

这对于索引和工作树中的文件都非常有用,但是无法提醒您忘记git status以便将复制到的文件。因此,在收集了比较结果列表之后,Git 还必须扫描工作树以查找实际上的每个文件。在工作树中但索引中没有对应副本的任何文件都是未跟踪的

此扫描是git add的较慢部分之一(尽管实际速度在很大程度上取决于操作系统的速度)。 Git首先读取顶级工作树目录中的每个文件和子目录(“文件夹”)名称。当然,它必须完全读取此目录,因为它是工作树的顶层。此目录中的任何 file 名称都表示工作树中的文件,并且该文件要么在索引中被跟踪,要么不被跟踪。如果文件未跟踪,除非您使用git status条目抑制投诉,否则Git会投诉该文件。

对于在顶层找到的目录.gitignore不会检查目录是否在索引中,因为目录永远是 。取而代之的是,Git只是在目录内部查看以查看其包含哪些文件和目录。必须检查该目录中的所有文件以查看是否未跟踪,如果是,则git status是否应该处理它们。如果目录包含自己的子目录,则必须以相同的方式递归扫描这些子目录。

git status中列出目录是为了让Git允许 not 在其中查看。例如,让我们具体考虑.gitignore目录。假设Debug/中没有 tracked 文件,并且您已经运行Debug/

Git将首先读取顶级目录。在此目录中,它找到名为git status.gitignore3dengine_headeronly.sln的文件。这些文件在索引中为 not ,并且在CMakeLists.txt中作为名称或模式列出 not ,因此.gitignore会抱怨它们(最后,当它列出未跟踪的文件时)。但是它还会找到git status.vs/3dengine_headeronly/Debug/Tests/cmake-build-debug/packages/

现在,如果{例如resources/中有一些跟踪文件,无论如何,Git都必须下降到packages中,以便将这些文件的索引副本与它们的工作树副本进行比较。但是我们在这里假设packages中没有跟踪的文件。因此Debug应该能够遍历git status项,并看到.gitignore(Git删除了斜杠以进行比较)与[Dd]ebug相匹配。这将允许Debug完全跳过git status,而根本不阅读它。

Debug末尾带有斜杠的事实意味着Git 必须已打开并扫描Debug/目录。 Git这样做的唯一原因是Debug中至少有一个 tracked 文件。因此:

Debug

可能会显示至少一个跟踪的文件。即便如此,目前尚不清楚为什么git ls-files --stage | grep Debug/ 规则与目录中包含的 untracked 文件不匹配,因此要获取确切名称的列表,并在任何目录上使用[Dd]ebug/ git --no-index check-ignore -v中的跟踪文件可能会有所帮助。

(这种优化有时会根本不打开目录,而Debug/有时根本不会打开目录,这是许多git status问题开始的地方。在此之前,无需做很多事情。并且除非有人教Git更好的方法来跳过或不跳过整个目录,但是使用.gitignore绝对可以帮助某些 other 棘手的情况。)

答案 2 :(得分:0)

就我而言,这只是一个错误。当我推送到 github 时,我看到提交实际上不是空的。确保将所有修改过的文件添加到提交中。