trakker/commit.sh

8 lines
127 B
Bash

#!/bin/bash
MSG="$1"
if [[ $MSG == "" ]]; then
MSG="Continued development"
fi
git add . && git commit -m "$MSG" && git push