Skip to content
This repository has been archived by the owner on Oct 4, 2019. It is now read-only.

Commit

Permalink
fix 2
Browse files Browse the repository at this point in the history
  • Loading branch information
tirinox committed Apr 9, 2015
1 parent 4ef9d8e commit c0975bb
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions push.sh
Expand Up @@ -4,12 +4,17 @@ if [ -z "$1" ]; then
echo "Usage $0 <comment>";
else
git status

echo "\n\n"
read -p "Press smth to git add -A"
git add -A
git status
read -p "Press smth to git commit with comment" $1
git commit -m $1
echo "\n"

echo "\n\n"
read -p "Press smth to git commit with comment $1"
git commit -m "$1"

echo "\n\n"
read -p "Press smth to git push origin master"
git push origin master
fi

0 comments on commit c0975bb

Please sign in to comment.