Editor1CurrentlyOpen[1].txt
由于正则表达式在 .gitignore 文件中无效,因此 glob 如何包含上述文件名?
答案1
.gitignore
每行都使用 glob 表达式,因此当您输入时Editor1CurrentlyOpen[1].txt
它会尝试匹配Editor1CurrentlyOpen1.txt
。
添加反斜杠来掩盖条目中的括号:
Editor1CurrentlyOpen\[1\].txt
Editor1CurrentlyOpen[1].txt
由于正则表达式在 .gitignore 文件中无效,因此 glob 如何包含上述文件名?
.gitignore
每行都使用 glob 表达式,因此当您输入时Editor1CurrentlyOpen[1].txt
它会尝试匹配Editor1CurrentlyOpen1.txt
。
添加反斜杠来掩盖条目中的括号:
Editor1CurrentlyOpen\[1\].txt