I have written some instructions that also use git to apply some patches. The instructions are intended to be put into the console and be done with it. Like this:
git am bar.patch
git am foo.patch
But git is now asking for the users name/email:
*** 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's default identity.
Omit --global to set the identity only in this repository.
fatal: unable to auto-detect email address (got 'root@user-VirtualBox.(none)')
You need to set your committer info first
This does not seem to be needed, as only the author of the the patches appear in the git log, but not the one who applied them. Is there a way to ignore configuration?
edit: typos