Files
mainwebsite/git.sh
2021-04-16 16:46:12 +02:00

14 lines
363 B
Bash
Executable File

#!/bin/bash
echo -n "Please specify the name of the commit: "
read commitname
echo "Running git add ."
git add .
echo "Finished running git add ."
echo "Running git commit -m "nameofthecommit""
git commit -m "$commitname"
echo "Finished running git commit -m "nameofthecommit""
echo "Running git push"
git push
echo "Finished running git push"
echo "See ya!"
exit