Skip to content

Commit

Permalink
Reworked git shortcuts
Browse files Browse the repository at this point in the history
  • Loading branch information
bozso committed Jun 4, 2019
1 parent 1f82aa3 commit 2a82bcb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions menu.sh
Original file line number Diff line number Diff line change
Expand Up @@ -154,14 +154,14 @@ git_status() {
git_remote_add() {
check_narg $# 1

git remote add origin $1
git remote add origin "$1"
}


git_push() {
check_narg $# 1
echo "git commit -am \"$1\""
git commit -am "$1"
echo "git commit -am \"$*\""
git commit -am "$*"
git push origin master
}

Expand Down

0 comments on commit 2a82bcb

Please sign in to comment.