1. 程式人生 > >git的配置操作

git的配置操作

com ash .com cnblogs onf use 配置 oca span

git配置信息

一、配置git config

git config user.name ‘yourName‘
git config user.name [email protected]

二、查看git config

查看系統config

git config --system --list

查看當前用戶(global)配置

git config --global  --list 

查看當前倉庫配置信息

git config --local  --list

三、修改git config

待續。。。

git的配置操作