jakubgarfield / Bonobo-Git-Server

Bonobo Git Server for Windows is a web application you can install on your IIS and easily manage and connect to your git repositories. Go to homepage for release and more info.
http://bonobogitserver.com
MIT License
1.81k stars 603 forks source link

Commit list wrong user name #837

Open jigarshahagile opened 5 years ago

jigarshahagile commented 5 years ago

I have a list of commits in my newly created GIT Repo. In the list of commits, it shows me the system / pc name in place of the user who committed the code. Capture1

DamianGuth commented 4 years ago

Hello,

i guess this issue is fixed by now since there was no further feedback provided.

For everyone else having this issue, check the configured username on your computer.

To do that open a terminal/cmd and use the following commands to check your username:

git config --global user.name This will show you your global configured username.

git config user.name This will show you any username that is configured for the repository itself.

Your username might be setup incorrectly.