git 设置多项目实现多账号登陆


9:45 2015/11/18
git 设置多项目时实现多账号用户登陆
git config --global user.name "your_name"

git config --global user.email "your_email"
如果你多参与的项目都允许你用同一个用户名和邮箱,这样设置当然没问题,但是,
一旦你进入公司,估计是没有自主选择权利的,公司都会配置相应的域账号和邮箱,
因此我们首先需要取消git的全局设置
git config --global --unset user.name
git config --global --unset user.email
针对每个项目,单独设置用户名和邮箱,设置方法如下:
mkdir ~/test // git检出目录
cd ~/test
git init
git config user.name "your_name"
git config user.email "your_email"
推荐博客;http://www.21ops.com/linux/17170.html

 

购买阿里云相关服务,这里可以领取优惠券, 有的产品5折优惠哟, 注意, 领取的优惠券30天内有效,尽快使用:
领取方式:进入链接后 页面下拉 一键领取全部 或者按需每次领取对应的优惠,领取链接:
点击此处链接领取
https://promotion.aliyun.com/ntms/act/ambassador/sharetouser.html?userCode=s306eooi&utm_source=s306eooi
如果有需要, 可以帮助部署LNMP环境, 价格80,学生可以商量

git 设置多项目实现多账号登陆

上一篇:sublime text 3 的在文件夹中查找的快捷键没有反应 的bug冲突


下一篇:git的几种回滚 git revert 和 git reset的区别