This commit is contained in:
2024-11-08 18:59:24 +01:00
commit fa4ecd7fb7
2 changed files with 17 additions and 0 deletions

7
git_helper.sh Executable file
View File

@@ -0,0 +1,7 @@
#!/bin/bash
BRANCH=`git branch --show current`
git add .
printf "commit message: "
read msg
git commit -m "$msg"
git push origin $BRANCH