为 .gitignore 创建目录/文件名规则
我想在 .gitignore 中设置一些规则,其中名称包含“_nogit”的任何目录或文件都将被忽略。
示例:
- ../videos_nogit/...
- bigvideo_nogit.mp4
- asset/_nogit/bigvideos...
谢谢--
I'd like to set up some rules in my .gitignore whereby any directory or file with a name containing "_nogit" will be ignored.
Examples:
- ../videos_nogit/...
- bigvideo_nogit.mp4
- assets/_nogit/bigvideos...
Thanks--
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果 .gitignore 文件中有一行没有斜杠,那么 git 会将其视为 shell glob 模式。因此,将
*_nogit*
添加到.gitignore
将忽略所有这些文件。另请参阅
gitignore
手册页。If you have a line in your
.gitignore
file that does not have slashes in it, thengit
treats it like a shell glob pattern. Thus, adding*_nogit*
to your.gitignore
will ignore all of those files.See also the
gitignore
man page.