gpt4 book ai didi

gitignore - .gitignore 的正确用法(针对文件类型)

转载 作者:行者123 更新时间:2023-12-04 16:31:32 28 4
gpt4 key购买 nike

当我输入 git status 时,我收到以下消息:

Changes not staged for commit:
(use "git add <file>..." to update what will be committed)
(use "git checkout -- <file>..." to discard changes in working directory)

modified: .DS_Store
modified: README.txt
modified: lib/PriceSeries.rb

Untracked files:
(use "git add <file>..." to include in what will be committed)

MM8 Prices.pdf
prices from EH.xlsx

我希望能够说 git add .,而不添加未跟踪的文件。我相信 .gitignore 文件应该是为了这个。我的 .gitignore 文件(在 .git 文件夹中)如下所示:

#Ignore all xlsx files
.xlsx

#Ignore all pdf file
.pdf

我做错了什么?

最佳答案

使用*作为扩展的前缀:

#Ignore all xlsx files
*.xlsx

#Ignore all pdf file
*.pdf

[更新] 另外,.gitignore 必须在你的项目的根目录下,而不是在 .git

关于gitignore - .gitignore 的正确用法(针对文件类型),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28524300/

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