diff --git a/scripts/gitFlow.sh b/scripts/gitFlow.sh new file mode 100755 index 0000000..358645f --- /dev/null +++ b/scripts/gitFlow.sh @@ -0,0 +1,10 @@ +#! /usr/bin/bash + +#Created by Jake Zaia + +#Takes in one argument, a commit message, and handles the entire git workflow. + +git pull; +git add .; +git commit -am "$1"; +git push;