查看当前的 git 的所有的配置,
git config --list # 这是查看当前用户的 config 信息
git config --global --list # 这是查看全局的
设置当前仓库的 username、email 和 credential.username 信息,
git config user.name "sonnycalcr"
git config user.email "[email protected]"
git config credential.username "sonnycalcr"
如果是设置全局的,那么,加上—global
即可,
git config --global user.name "sonnycalcr"
git config --global user.email "[email protected]"