记录一下 git 的 ssh 配置,备忘。
1.配置用户和邮箱
$ git config --global user.name "webkong"
$ git config --global user.email "webkong@webkong.cn"
如果在多用户情况下,一般设置本地用户
//cd to repo path
$ git config --local user.name "webkong"
$ git config --local user.email "webkong@webkong.cn"