Files
vps-init/git_helper.sh
2024-11-08 18:59:24 +01:00

8 lines
137 B
Bash
Executable File

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