阅读量:0
在 Linux 系统下,Git 允许你在不同的级别设置配置选项,包括全局(对所有仓库生效)和局部(仅对当前仓库生效)
要设置局部配置,你需要在 Git 仓库的根目录下找到一个名为 .git
的隐藏文件夹。在这个文件夹中,有一个名为 config
的文件,它包含了该仓库的局部配置信息。
你可以直接编辑这个文件来修改局部配置,但是更推荐的方法是使用 git config
命令。以下是一些常用的局部配置操作:
- 设置用户名和邮箱:
git config user.name "Your Name" git config user.email "your.email@example.com"
- 设置推送时的默认行为:
git config push.default simple
- 设置换行符处理:
git config core.autocrlf input
- 设置忽略文件:
echo "*.log" >> .gitignore git add .gitignore git commit -m "Add .gitignore file"
- 查看当前仓库的配置:
git config --local --list
注意:在上述命令中,--local
参数表示我们正在操作局部配置。如果你想查看全局配置,可以使用 --global
参数;如果你想查看系统级别的配置,可以使用 --system
参数。