Zhonghui

每个不曾起舞的日子,都是对生命的辜负

User Tools

Site Tools


软件:git:config

Table of Contents

Config

Git的配置文件可能有多个,是不同层级的,比如系统层级的和用户层级的


查看配置

git config user.name // 获取当前登录的用户
git config user.email // 获取当前登录用户的邮箱
 
git config --list // 查看所有的配置信息
 
// 查看所有的Git配置,并且标记出每一个设置项来自哪一个配置文件
git config --list --show-origin

修改配置

git config --global user.name 'userName' // 修改登陆账号,userName为你的git账号
git config --global user.email 'email' // 修改登陆邮箱,email为你的git邮箱
git config --global user.password 'password' // 修改登陆密码,password为你的git密码
 
// 其中的参数--global,可以参考usage
Config file location
    --global              use global config file
    --system              use system config file
    --local               use repository config file
    --worktree            use per-worktree config file
    -f, --file <file>     use given config file
    --blob <blob-id>      read config from given blob object
/var/www/DokuWikiStick/dokuwiki/data/pages/软件/git/config.txt · Last modified: 2023/02/09 15:53 by zh