Git pull origin master does not work
I just updated my git version 2.28.0, after that I tried to push my new code. But an error show up. I thought it was something related to my proxy, because my company has a proxy. But at the end I found out it was my password of my proxy user.
This is the command to set your proxy on git. Run this command on your git command line (gitbash, etc.)
git config --global http.proxy http://user:password@myproxy:8080
My password contained this character #. So I realized that the new update does not allow special characters, so I needed to change my user password, then finally I was able to pull and push to master.
happy coding.😁
Comments
Post a Comment