gpt4 book ai didi

git - "tags"是 git 中的保留关键字吗?

转载 作者:太空狗 更新时间:2023-10-29 14:26:02 26 4
gpt4 key购买 nike

我的一个项目有一个名为“tags”的子文件夹。看起来,这个文件夹被 git 忽略了,尽管我没有在我的 .gitignore 文件中定义它。

所以我想有一个像“标签”这样的“关键字”列表默认被 git 忽略了?

这是.gitignore文件的内容

# Java: https://github.com/github/gitignore/blob/master/Java.gitignore
*.class
**/classes/

# Package Files #
*.jar
*.war
*.ear

# IDEA: https://github.com/github/gitignore/blob/master/Global/IntelliJ.gitignore

*.iml
*.ipr
*.iws
.idea/

# Mac OS X: https://github.com/github/gitignore/blob/master/Global/OSX.gitignore

.DS_Store
.AppleDouble
Icon


# Thumbnails
._*

# Files that might appear on external disk
.Spotlight-V100
.Trashes

# Gradle
.gradle/
**/build/
out/

# Leiningen and others
**/target/

最佳答案

tags 是全局忽略规则的一个很好的候选者,因为它被 ctags 命令使用。

ctags 在您的源代码中生成标识符索引并将它们写入名为 tags 的文件,vi 使用该文件快速跳转到按 ^] 时光标下标识符的定义。出于这个原因,许多源目录往往包含版本控制不感兴趣的 tags 文件。

您是否设置了全局忽略文件? An answer to this question建议:

git config --get core.excludesfile

找出答案。

并进一步阅读其他问题的答案:还有 $XDG_CONFIG_HOME/git/ignore$HOME/.config/git/ignore

关于git - "tags"是 git 中的保留关键字吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26654808/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com