IN SHORT
Is it possible to create stash (using git stash create ) without having to configure user.email and user.name ? Something similar to the git commit --author ?
SOME CONTEXT:
I have several build machines on which I have a build user. Each of them has access to the central git repositories. However, I did not configure user.email and user.name for each of these users; since they never need to commit.
In one of my scripts, I use
git stash create
(which allows me to use the git --format-gtz archive ... I will show you the details, see my question)
However, this command does not work:
*** 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: empty ident name (for < macq@chmalap.macqel >) not allowed Cannot save the current index state
PS: I have git 1.8.4
source share