Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
假设我的仓库中有一个 android 项目并添加了 apk 文件。后来我添加了一个 gitignore 让我们说这个。这个apk文件将来会发生什么?该文件将在每次构建后不断更改,因此是否会被 git 检查?就我而言,我希望它继续跟踪此文件。
该文件将继续被跟踪。您可以通过尝试轻松找到这一点:
$ mkdir /tmp/test $ cd /tmp/test $ git init $ touch foo $ git add foo $ echo "foo" > .gitignore $ git add .gitignore $ git commit -m "initial commit" $ echo foo > foo
现在,git status将显示modified: foo,如果你git add foo,它会尽管上演.gitignore。
git status
modified: foo
git add foo
.gitignore
tag in html