I have a different git repository for my office and a different git repo for my hobby projects.
When I do git config --global user.name
the user name changes globally and this creates a confusion
of committing to a repo with user name.
Hence the question is how can i have the same username across all my hobby projects and
the same username across the office projects. I use the same machine to work on both the places.
Just use
--localinstead of--global. In fact, local is the default so you can just doin one repo, and
in another repo
The values will then be stored in in the
.git/configfor that repo rather than your global configuration file.