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: 9 comments 14 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.
This comment was marked as spam.
This comment was marked as spam.
This comment was marked as spam.
This comment was marked as spam.
This comment was marked as off-topic.
This comment was marked as off-topic.
This comment was marked as off-topic.
This comment was marked as off-topic.
This comment was marked as spam.
This comment was marked as spam.
-
What if someone was at 11 ponderosa drive in the garage linking to my wifi |
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.