In my private repo, i see commits by another USER!! #70273
-
Select Topic AreaBug BodyThis guy: https://github.com/yyeboah What does this mean? |
Beta Was this translation helpful? Give feedback.
Replies: 5 comments 10 replies
-
Here are a few possible reasons for this:
Here are some other things you can do to secure your private GitHub repository:
I hope this information is helpful. |
Beta Was this translation helpful? Give feedback.
-
Random guess: If you make commits on the web by changing a file on github.com, the commit has the correct author, and if you make a commit locally and push it it has the wrong author. Is that right? Last I checked, GitHub identifies commit authors by their email addresses. Run |
Beta Was this translation helpful? Give feedback.
-
هلپا۶اهاه |
Beta Was this translation helpful? Give feedback.
Random guess: If you make commits on the web by changing a file on github.com, the commit has the correct author, and if you make a commit locally and push it it has the wrong author. Is that right?
Last I checked, GitHub identifies commit authors by their email addresses. Run
git config user.email
locally to check if your email is spelled correctly. You can usegit config --global user.email
to check the global setting, or rungit config user.email
(no--global
) in a repository just in case the repository's settings are different from global settings.