We have a git server in our company. I am using git GUI to connect to it and push and pull source codes to it. The problem is that every time that I want to push my files, I need to enter the password. Is there any way that I can setup the git gui in a way that it doesn’t ask me to enter a password every time that I am pushing my files into server?
Share
You have to setup you ssh keys. And the private key should either have empty passphrase or you install an agent so that you don’t have to type in the password.
See if this link helps: http://progit.org/book/ch4-3.html
If you are using http(s), include the username and password in your url for the server ( by editing the .git/config)