dotfiles/scripts/gitpush.sh
2020-10-16 22:55:26 +03:00

5 lines
97 B
Bash

#!/bin/sh
git add ./
read -p "Commit message: " msg
git commit -am "$msg"
git push origin master