I've set user.name
and user.email
in the config when user.name
didn't work, but I am still prompted for my username every time I push/pull from remote.
$ git config user.name 'myemail@example.com'
$ git config user.email 'myemail@example.com'
$ git pull
Username for 'https://example.com':
How can I skip that prompt?
I still want to be forced to enter a password every time.