Git 会忽略这种文件吗?
我怎样才能忽略这样的文件
.tmp_index.html.36436~
How can I ignore files like this one
.tmp_index.html.36436~
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我怎样才能忽略这样的文件
.tmp_index.html.36436~
How can I ignore files like this one
.tmp_index.html.36436~
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(4)
将模式放入 .gitignore 文件中。
Put the pattern in your .gitignore file.
.gitignore 文件可以使用通配符,因此您可以执行类似的操作
The .gitignore file can take wildcards, so you could do something like
这在一定程度上取决于可以生成的所有文件名。根据示例,您似乎想忽略以
.tmp_index.html
前缀开头的文件。如果是这样,请将以下内容添加到您的 .gitignore 文件中That depends a bit on what all file names can be generated. Based on the example though it looks like you want to ignore files which begin with the
.tmp_index.html
prefix. If so then add the following to your .gitignore file将名为
.gitignore
的文件添加到包含 git 存储库的文件夹的根目录,并将以下行添加到其中:Add a file named
.gitignore
to the root directory of the folder that contains your git repository and add this line into it: