wallpaper/gitpush.sh
2023-02-08 16:11:18 +01:00

10 lines
116 B
Bash
Executable File

#!/bin/sh
#
echo -e "Enter the git commit message: \c "
read comment
git add -A
git commit -m "$comment"
git push