快速为不同 Git 平台配置用户
Posted imzhizi
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了快速为不同 Git 平台配置用户相关的知识,希望对你有一定的参考价值。
在 ~
目录下创建 config
文件可以为项目配置默认的用户信息,但如果希望经常切换,那么最好就是通过命令为项目单独设置用户。
我使用的 shell 是 zsh, 所以我在 ~/.zshrc
文件中添加以下代码, 可以通过在项目命令行中输入 labgit
或 hubgit
命令快速为不同 Git 平台配置信息.
如果使用的 shell 是 bash, 则需要在 .bashrc
或 .bash_profile
中粘贴以下内容(不存在可自行创建).
如果不确定自己使用的是什么 shell, 那就配置 .bashrc
.
alias labgit='git config user.username "username";git config user.email [email protected]'
alias hubgit='git config user.username "imzhizi";git config user.name "质子";git config user.email [email protected]'
以上是关于快速为不同 Git 平台配置用户的主要内容,如果未能解决你的问题,请参考以下文章