I have set up ssh in my ubuntu server which I have installed git. So, I append my pubic key to the ~/.ssh/authorized_keys file of the server which git is installed. I can use any git commands from my local pc(where my public key is pasted in the ~/.ssh/authorized_keys)
Yet, I just wanted to know how do I avoid entering the password each time I use a git command. So that I can avoid entering the password each time. Thanks
Response from https://askubuntu.com/questions/362280/enter-ssh-passphrase-once
Duplicate:
Git enter long passphrase for every push
Git keeps asking me for my ssh key passphrase
EDIT
The only way I know is to use something using
expect
and probably deal with ssh-config's ProxyCommand or use python version which is more complex and allow keeping credentials in config file.
And as a note - the only acceptable solution (secure and convenient) is ssh keys based auth.