Git 配置全局忽略文件

2021-12-08 08:22:20 浏览数 (1)

(1)

  1. 在家目录创建一个.gitignore_global文件,将常用的忽略写进入,官方提供了一些模板
  2. 确保家目录.gitconfig文件中[core]代码中指定了这个文件的路径,我的电脑上是这样的:
代码语言:javascript复制
[core]
autocrlf = input
safecrlf = false
excludesfile = /Users/yangyan/.gitignore_global

0 人点赞