将 gitlab 热图提交与 github 帐户相结合
Combine gitlab heatmap commit with github account
我一直在使用我的大学私人 gitlab 一段时间。我有很多提交可以像这样显示 Gitlab commit
我不能将 link 交给我的 gitlab 给潜在的招聘人员。所以我决定创建一个 github 并将我的存储库放在那里。
在我的 github 上,我创建了一个新的存储库,我只是在本地做:
git remote add origin2 git@github.com:mylogin/new_repo.git
git branch -M main
git push origin2 -u main
我可以在存储库中看到提交,但在我的 github 热图上它显示为一个大提交。我希望它显示我之前在 github.
中的所有提交
不知道可不可以。
请帮忙。
我想也许你在 Github 上看到的不是提交,这是你加入 Github 的事件。
就像:
根据docs:
Commits must be made with an email address that is connected to your account on GitHub.com, or the GitHub-provided noreply email address provided to you in your email settings, in order to appear on your contributions graph.
因此,您可以将您在 Gitlab 上提交的电子邮件地址添加到您的 Github 帐户。在此之后,将计算并显示贡献。
按照本指南在 Github 上设置您的提交电子邮件地址:
https://docs.github.com/en/account-and-profile/setting-up-and-managing-your-github-user-account/managing-email-preferences/setting-your-commit-email-address#setting-your-commit-email-address-on-github
我一直在使用我的大学私人 gitlab 一段时间。我有很多提交可以像这样显示 Gitlab commit
我不能将 link 交给我的 gitlab 给潜在的招聘人员。所以我决定创建一个 github 并将我的存储库放在那里。
在我的 github 上,我创建了一个新的存储库,我只是在本地做:
git remote add origin2 git@github.com:mylogin/new_repo.git
git branch -M main
git push origin2 -u main
我可以在存储库中看到提交,但在我的 github 热图上它显示为一个大提交。我希望它显示我之前在 github.
中的所有提交不知道可不可以。 请帮忙。
我想也许你在 Github 上看到的不是提交,这是你加入 Github 的事件。
就像:
根据docs:
Commits must be made with an email address that is connected to your account on GitHub.com, or the GitHub-provided noreply email address provided to you in your email settings, in order to appear on your contributions graph.
因此,您可以将您在 Gitlab 上提交的电子邮件地址添加到您的 Github 帐户。在此之后,将计算并显示贡献。
按照本指南在 Github 上设置您的提交电子邮件地址: https://docs.github.com/en/account-and-profile/setting-up-and-managing-your-github-user-account/managing-email-preferences/setting-your-commit-email-address#setting-your-commit-email-address-on-github