我有一个包含.gitignore
文件的 Git 存储库,其中列出了一些要忽略的文件(在构建期间创建)。
$ cat .gitignore
foo
$ ls
bar
$ git status
On branch master
nothing to commit, working directory clean
$ touch foo
$ ls
bar foo
$ git status
On branch master
nothing to commit, working directory clean
$
在该存储库的特定克隆中,我确实希望看到.gitignore
.
这可以通过以下--ignored
选项来完成git status
:
$ git status
On branch master
nothing to commit, working directory clean
$ git status --ignored
On branch master
Ignored files:
(use "git add -f <file>..." to include in what will be committed)
foo
nothing to commit, working directory clean
$
好的。我的问题是:我怎样才能使给定存储库的永久保存,这样我就不必记住添加--ignored
标志?
$ git status
On branch master
Ignored files:
(use "git add -f <file>..." to include in what will be committed)
foo
nothing to commit, working directory clean
$
我确信有一些git config
允许我配置我的克隆以忽略.gitignore
...的内容
另外,我不想对所有存储库都有这个选项;仅适用于少数人。