程序员潇然 发表于 2022-7-22 16:48:01

[git]github gitee不同仓库设置不同的提交人姓名邮箱信息

不同仓库提交代码,如何设置使用不同的姓名和邮箱信息

对于开发来说,git几乎可以说是必须要使用的工具了,通常开发人员也经常会有自己的私人仓库。

一边是公司的项目仓库,一边是个人的私人仓库,或者参与的一些开源项目,有的时候如果用同样的用户名会比较不方便。

#### 查看目前全局git配置信息

`git config -l`

输出内容中`user.name`就是目前设置的用户名



## 设置步骤

#### 进入要单独设置用户名的仓库`.git`文件夹中

`cd .git`

#### 设置单独用户名

`git config user.name "user1"`

#### 设置邮箱

`git config user.email "user1@gmail.com"`

#### 如果需要设置全局

`git config --global user.name "global_user"`

设置后,重新使用`git config -l`进行查看,结果如下:

!(data/attachment/forum/202207/22/164231ohr1jxfaijaruw1q.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/300 "image.png")

!(data/attachment/forum/202207/22/163741vmit3mmtfhess15t.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/300 "image.png")

随便修改看下效果:
!(data/attachment/forum/202207/22/164757bkh4qt6zahnwphjp.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/300 "image.png")

!(data/attachment/forum/202206/16/141330jha7st9soow8772i.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/300 "common_log.png")
`转载务必注明出处:程序员潇然,疯狂的字节X,https://crazybytex.com/thread-90-1-1.html `

页: [1]
查看完整版本: [git]github gitee不同仓库设置不同的提交人姓名邮箱信息