gpt4 book ai didi

Git:为每个 repo 设置不同的本地 user.name 和 user.email

转载 作者:IT王子 更新时间:2023-10-29 01:20:46 25 4
gpt4 key购买 nike

我目前正在从事 2 个项目,当我向它们推送时,它们期望我使用不同的数据配置本地用户名和电子邮件。为此,我一直在更新我的配置,例如:

git config --local user.email "namelastname@domain.example"

由于它们是不同的存储库,有没有办法为每个存储库定义一个本地电子邮件?

也许在 .gitconfig 中?

最佳答案

对于一个 repo,进入相关的 repo DIR 并:

git config user.name "Your Name Here"
git config user.email your@email.example

对于(全局)默认电子邮件(在您的 ~/.gitconfig 中配置):

git config --global user.name "Your Name Here"
git config --global user.email your@email.example

您可以通过以下方式检查您的 Git 设置:git config user.name && git config user.email

如果你在一个特定的 repo 中你设置了一个新的用户/配置(不同于全局)那么它应该显示本地配置,否则它会显示你的全局配置。

关于Git:为每个 repo 设置不同的本地 user.name 和 user.email,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42167345/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com