赞
踩
git 配置分为三类级别,并且分别处于不同路径。
以windows11操作系统为例
系统级的配置(System)
配置文件路径:/xxx/etc/gitconfig 。(xxx 是 git 安装路径)
对应命令查询: git config --list --system
系统用户级的配置(Global)
配置文件路径: /xxx/.gitconfig 。(xxx 是 当前系统用户目录)
对应命令查询: git config --list --global
仓库级别的配置
配置文件路径: /xxx/.git/config 。(xxx 是 当前仓库所在目录)
git config
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。