I'm trying to push my password over to my git push to make a quick way to add, commit and push, but am unable to get the bash prompt to push and enter my password. Does someone know how to do this? I'm sure it mush be simple....
#!/bin/bash
PWD='password'
read MSG
git add .
git commit -m '"$MSG"'
echo "$PWD" | git push |