something

This commit is contained in:
despiegk 2024-01-13 09:38:43 +03:00
parent 7c51e58193
commit e5d888de1c
Signed by: despiegk
GPG Key ID: 99E4E1492F73BC18

View File

@ -1,7 +1,10 @@
#!/usr/bin/env bash #!/usr/bin/env bash
set -ex set -e
MYDIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" MYDIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
cd "$MYDIR" cd "$MYDIR"
git add . -A ; git commit -m "how not to commit"; git push echo "Enter the commit message:"
read commit_message
git add . -A ; git commit -m "$commit_message"; git push