How is it possible that the git push via SSH from my local machine looks like coming from another user? When I look into my GitHub repo I see that my push comes from a unknown account.
Asked
Active
Viewed 40 times
0
-
3look at your local `git config -l`, fields `user.name` and `user.email` – njzk2 Oct 26 '16 at 20:53
-
if you're ssh'd into another machine why would you expect it to post as the user on your machine? – I wrestled a bear once. Oct 26 '16 at 20:55
-
Thank you for your quick response! The user.name and the user.email were not set in my local .git/config file. After adding the correct values, it worked correct. – Jonas Brog Oct 26 '16 at 21:17