我有两个github帐户,一个用于工作(username_work)和一个个人(username_personal)。 我有两个repo - repo_work和repo_personal。
到目前为止,我使用了rep__work与username_work。现在我创建了repo_personal和username_personal。我想将username_personal与repo_personal一起使用。
我做了以下事情:
git clone url_to_repo_personal.
cd repo_personal
git config --local --replace-all user.name "username_personal"
git config --local --replace-all user.email "email_username_personal_account_created_from"
本地git配置包含正确的用户名,即username_personal。 但是当我做git push origin dev时,它使用了我的办公室用户名。我还使用我的个人电子邮件创建了新的SSH密钥,并在我的github配置文件中更新。任何解决方案??