remove AI contributor from my repo #190363
-
Select Topic AreaBug BodyHi, Please remove the following contributor from my repo:
This AI contributor got accidentally added to one of my older commits while using Claude for push. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
|
💬 Your Product Feedback Has Been Submitted 🎉 Thank you for taking the time to share your insights with us! Your feedback is invaluable as we build a better GitHub experience for all our users. Here's what you can expect moving forward ⏩
Where to look to see what's shipping 👀
What you can do in the meantime 💻
As a member of the GitHub community, your participation is essential. While we can't promise that every suggestion will be implemented, we want to emphasize that your feedback is instrumental in guiding our decisions and priorities. Thank you once again for your contribution to making GitHub even better! We're grateful for your ongoing support and collaboration in shaping the future of our platform. ⭐ |
Beta Was this translation helpful? Give feedback.
-
|
Hi, Parker. Since the If it's just one or two older commits, the "standard" way to fix it is using an interactive rebase:
Just a heads up: Since you seem to already rewrite commit history, you just have to wait a couple weeks / months for the contributors graph to update. If you don't want to wait, here is a trick that worked for me: change branch name from Hope that helps! If it solves the problem, feel free to mark this as the answer. It helps other people with the same issue find the fix faster. jannoguer |
Beta Was this translation helpful? Give feedback.
Hi, Parker.
Since the
claudeaccount is linked to the email address used in that accidental commit, GitHub assumes they're a contributor. To get them off the list, you have to actually rewrite your git history to change the author information for those specific commits.If it's just one or two older commits, the "standard" way to fix it is using an interactive rebase:
git rebase -i --root --committer-date-is-author-dateto go back to those commits.picktoeditfor the ones you want to fix.git commit --amend --author="jacqpark <jpark9510@gmail.com>" --no-editto put yourself back as the author.git rebase --continue. Repeat steps 3 and 4 until the rebase is complete.