本文介绍了如何忽略以Git中的数字开头的文件?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在某个文件夹中,我有名为 div>

Git不使用regexp,而是使用匹配忽略的文件。在您的根目录中添加以下行 .gitignore :

  [0- 9] * 

如果您只想忽略 / static中的这些文件/ img / 子目录中,您应该将上一行添加到该子目录内的 .gitignore 文件或将以下行添加到您的根目录 .gitignore :

  / static / img / [0-9] * 


In a certain folder, I have image files named foo.jpg, bar.png, etc. I want to keep them in version control, except those named like 1_baz.png, 2_zaz.jpg, etc (since they are actually generated).

What's the entry should I add to .gitignore? Regex such as [0-9]+.* does not seem to work.

解决方案

Git does not use regexp but glob pattern to match ignored files. Add the following line in your root .gitignore:

[0-9]*

If you only want to ignore those files in the /static/img/ subdirectory you should either add the previous line to .gitignore file inside that subdirectory or add the following line in your root .gitignore:

/static/img/[0-9]*

这篇关于如何忽略以Git中的数字开头的文件?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-13 07:33