You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

15 lines
218 B

#!/bin/sh
if [ ! -z "$1" ]; then
comment=$1
git add .
git commit -m"$comment"
git push origin
else
echo ""
echo "Whe need a comment for the curent push"
echo ""
echo "usage: ./push.sh \"comment here\" "
fi