我在GitHub上有一个人回购和一个组织。但我最近的项目(https://github.com/Lanseuo/devExamples)是一个个人项目,不属于我的组织。不幸的是,我的上次提交归我的组织所有。我试图改变我的名字(git config --global user.name“你的名字”)。但是一切都是正确的。为什么Git会提交我的组织名称,如何更改?
答案 0 :(得分:0)
检查您是否更改了回购(user.name
)的git config --local ...
。
$ git config --list
# Find 'user.name' and 'user.email'
更改提交作者:
$ git commit --amend --author "New-author-name <new-author@mail.com>"
$ git push -f origin HEAD
答案 1 :(得分:0)
转到GitHub中的设置,然后在电子邮件标签下添加您的组织电子邮件地址。这样,您将在您的组织名称下显示所有已完成的工作。
使用命令
更改您的用户名和用户电子邮件git config --global user.name "name"
git config --global user.email "email-address"