标签: git github
Linux服务器上至少有两个用户在同一目录上工作。我们每个人都需要承诺和将更改推送到repo,这些更改需要在Github中正确识别。
如何配置:git config user.name或user.email以便让多个用户正确创作其更改?
git config user.name
user.email
答案 0 :(得分:1)
您可以使用--author选项为每个提交指定作者。
git commit --author="yourname <foo@example.com>"