如何从我的 git 提交中排除“.exe”文件类型?

问题描述 投票:0回答:2

我可以从 git 提交中排除单个文件,但我想排除具有

.exe
文件类型的所有文件。

git gitignore
2个回答
4
投票

您可以在 git 忽略文件中使用正则表达式作为模式,如下所示:

# Ignore all
*

# Unignore all with extensions
!*.*

# Unignore all dirs
!*/

### Above combination will ignore all files without extension ###

# Ignore files with extension `.class` & `.exe`
*.class
*.exe

# Ignore `bin` dir
bin/
# or
*/bin/*

# Unignore all `.exe` in `bin` dir
!*/bin/*.exe

0
投票

你可以简单地在你的 git 初始化文件夹中创建一个 .gitignore 文件

touch .gitignore

您可以使用任何文本编辑器打开该 gitignore 文件并写入

*.exe
以忽略添加到版本控制的 .exe 文件。如果 .exe 已经被提交,您可以简单地删除它并进行新的提交

© www.soinside.com 2019 - 2024. All rights reserved.