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.
我在 GIT 中有一个 Android 项目。我想提交所有更改,但不想提交 bin 文件夹。除了 bin 文件夹之外,是否有任何命令可以提交所有内容?
将 bin 添加到您的 .gitignore 文件中。
您可以像这样将 bin 文件夹添加到.gitignore文件中:
.gitignore
bin/
如果 bin 文件夹已被跟踪,即使您已将其添加到 gitignore 中,您也可以:
git rm -r --cached bin/
只需将 bin 文件夹添加到.gitignore