1

enter image description here

Pretty much what the image shows. I don't have my credentials stored on my PC, I type them in each time. The machine and credentials are identical between all commits, and I'm the only person allowed to work on that project anyways ...

Twiggeh
  • 1,030
  • 1
  • 12
  • 24
  • Does `git config user.name` or `git config user.email` print something? – vkozyrev Apr 21 '20 at 06:59
  • @vkozyrev "I don't have my credentials stored on my PC", "I type them in each time". They should be empty right ? It does always ask me on a push what my username and pass are – Twiggeh Apr 21 '20 at 07:03

2 Answers2

0

Set the user name and email in your PC as below, you will not have to type them in each time

 git config --global user.email "you@example.com"                                                                        
 git config --global user.name "Your Name"

Parvathi
  • 16
  • 2
0

Didn't think that I needed to save user.email and user.name if git asked each time for the email / pass anyways. Saving them made the issue go away

Twiggeh
  • 1,030
  • 1
  • 12
  • 24