快速为不同 Git 平台配置用户

Posted imzhizi

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了快速为不同 Git 平台配置用户相关的知识,希望对你有一定的参考价值。

~ 目录下创建 config 文件可以为项目配置默认的用户信息,但如果希望经常切换,那么最好就是通过命令为项目单独设置用户。

我使用的 shell 是 zsh, 所以我在 ~/.zshrc 文件中添加以下代码, 可以通过在项目命令行中输入 labgithubgit 命令快速为不同 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 平台配置用户的主要内容,如果未能解决你的问题,请参考以下文章

Windows下配置多个Git账号

共用服务器多git账号配置

同为博客,不同风格 ——Hexo另类搭建

当git配置了不同的远程库而且邮箱不一致时

GNU开发工具——CMake快速入门

GNU开发工具——CMake快速入门