我可以在 .gitconfig 中为自己指定多个用户吗?
在我的 ~/.gitconfig
中,我在 [user]
下列出了我的个人电子邮件地址,因为这是我想用于 Github 存储库的内容.
In my ~/.gitconfig
, I list my personal email address under [user]
, since that's what I want to use for Github repos.
但是,我最近也开始在工作中使用 git.我公司的 git repo 允许我提交,但是当它发出新变更集的公告时,它说它们来自 Anonymous,因为它无法识别我的 .gitconfig
中的电子邮件地址 - 至少,那是我的理论.
But, I've recently started using git for work, too. My company's git repo allows me to commit, but when it sends out announcements of new changesets, it says they are from Anonymous because it doesn't recognize the email address in my .gitconfig
- at least, that's my theory.
是否可以在 .gitconfig
中指定多个 [user]
定义?或者是否有其他方法可以覆盖某个目录的默认 .gitconfig
?就我而言,我检查了 ~/worksrc/
中的所有工作代码 - 有没有办法只为该目录(及其子目录)指定 .gitconfig
?
Is it possible to specify multiple [user]
definitions in .gitconfig
? Or is there some other way to override the default .gitconfig
for a certain directory? In my case, I check out all work code in ~/worksrc/
- is there a way to specify a .gitconfig
for only that directory (and its subdirectories)?
您可以将单个存储库配置为使用覆盖全局配置的特定用户/电子邮件地址.从 repo 的根目录,运行
You can configure an individual repo to use a specific user / email address which overrides the global configuration. From the root of the repo, run
git config user.name "Your Name Here"
git config user.email your@email.com
而默认用户/电子邮件在您的 ~/.gitconfig 中配置
whereas the default user / email is configured in your ~/.gitconfig
git config --global user.name "Your Name Here"
git config --global user.email your@email.com