一、设置当前项目的git用户名和邮箱

// 设置用户名称
git config user.name "SoftLeaderGy"

// 设置用户邮箱
git config user.email "[email protected]"

二、设置全局的git用户名和邮箱

// 设置全局的用户名
git config --global user.name "SoftLeaderGy"

// 设置全局的邮箱
git config --global user.email "[email protected]"

三、查看git全局的用户名称name和用户邮箱email可以使用以下方式

// 查看全局的用户名
git config --global user.name

// 查看全局的邮箱
git config --global user.email

四、git查看配置信息

  • config配置指令

    git config
    
  • config 配置有system级别 global(用户级别) 和local(当前仓库)三个 设置先从system-》global-》local 底层配置会覆盖顶层配置 分别使用--system/global/local 可以定位到配置文件

    • 查看系统级的配置信息

      git config --system --list
    • 查看用户级配置信息

      git config --global --list
    • 查看当前仓库配置信息

      git config --local --list
03-05 16:42