I\'m working with Git pushing changes to a repository shared over HTTP / WebDAV, and Git prompts for a password for every operation that accesses the HTTP remote. Is there a
Run this command inside your repo:
git config credential.helper store
Then push to the server once:
git push
The credentials you use to push to the server will get saved in ~/.git-credentials.
~/.git-credentials
Instructions taken from this guide here.