查看自己的用户名和邮箱地址:
$ git config user.name
$ git config user.email
修改自己的用户名和邮箱地址:
$ git config --global user.name "xxx"
$ git config --global user.email "xxx"
repo sync 相當於對每個 project 做 git pull 的動作
查看自己的用户名和邮箱地址:
$ git config user.name
$ git config user.email
修改自己的用户名和邮箱地址:
$ git config --global user.name "xxx"
$ git config --global user.email "xxx"
repo sync 相當於對每個 project 做 git pull 的動作
转载于:https://www.cnblogs.com/jlyzxye/p/10277226.html