5
I wonder if there’s a possibility that I can cache my password for my git user so that I’m not prompted for the password every time I perform a git pull from the server, remembering that I’m not allowed to change the server settings
//Updating
I use command line via linux shell and I’m not using git hub git server is installed on a server and always asks for password at pull
Goal I have a Shell Script that updates 5 projects at once but it asks 5 times the msma password would like to pass something by parameter such as git pull origin master --nopassword or git pull origin master --password 12345
Are you using a common terminal or some app? In the terminal you usually only need to enter the password once per session.
– Ricardo Moraleida
You use the repository on github?
– Kenny Rafael
updated the information
– Jaison Pereira
see if
expect/send
te resolve: http://stackoverflow.com/a/16007759/1001109– Ricardo Moraleida