Did you try the trick with gitaskpass?
Create a file that contains:
echo "mygitpass"
Then chmod it,
chmod +x mypassfile
then export it,
export GIT_ASKPASS="location/of/pass/file"
that should let it not bother you anymore.
If you want to automatically add it to your bash session,
add that
export line into your bashrc.
Thanks for reminding me about that. :) I had that fix in my script to sync my local
repository. I now have adapted that to general usage too. One less irritant.
Still need help with creating commit messages in bulk and pushing modules in bulk.
Darrell