When I try to commit the repository, I get an error message:
$ git commit *** Please tell me who you are. Run git config --global user.email " you@example.com " git config --global user.name "Your Name" to set your account default identity. Omit --global to set the identity only in this repository. fatal: unable to auto-detect email address (got '[output redacted]')
The obvious solution would be to run the git config options on the output, however I don't want to do this.
The computer in question does not belong to a specific person, but is a shared computer. Therefore, each latch will be a different user.
How do I get around this and set the author for each commit, not global?
source share