diff --git a/gitpush.sh b/gitpush.sh new file mode 100755 index 0000000..e5cb6dd --- /dev/null +++ b/gitpush.sh @@ -0,0 +1,9 @@ +#!/bin/sh +# + +echo -e "Enter the git commit message: \c " +read comment +git add * +git commit -m "$comment" +git push +