I am trying to setup a new Windows server to run a scheduled task, which will push files into a repo (on my internal GitLab server). I have version 2.22.0 and am running the following command:
git.exe push origin master
Every time, I get prompted for git@git.domain.com's password.
I ran:
git config --global -e
and saved:
[credential]
helper = wincred
[credentials]
helper = wincred
Then I put a generic credential with the address "git.domain.com" (and the service account's username and password) into the Windows credential manger, but I still get prompted.
What part am I missing?