Working on a bash script which will pull from my repo and which will autowrite the username and password to the input prompt.
This didn't work:
#!/bin/bash
git pull -u origin master
echo "username"
echo "password"
When I run the script it ask for the username and password and doesn't autofill it.