At my workplace I am trying to speed up my startup procedure so I am writing a BASH script that does it for me.
One of the things it needs to do is do multiple git pull commands
What I would like to do is have the script grab my password once at the very beginning, and then pipe that response into each git pull command.
However echo $password | git pull does not seem to do anything.
Is there a way to pipe into git pull, and if so how do I?