Skip to content

Commit

Permalink
Don't use "boxtee" for "git elegant" commands
Browse files Browse the repository at this point in the history
  • Loading branch information
extsoft committed Apr 30, 2018
1 parent 9935c2d commit 16d9542
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/main/git-elegant-check
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ default() {
"-s" | "--staged")
boxtee git diff --cached --check
;;
*) boxtee git elegant check --all
*) git elegant check --all
;;
esac
}
2 changes: 1 addition & 1 deletion src/main/git-elegant-feature
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ set -e
default() {
_validate "$1" "Feature name"
status=$(boxtee git stash save elegant-git)
boxtee git elegant pull $MASTER
git elegant pull $MASTER
boxtee git checkout -b "$1"

if [[ "$status" =~ "Saved working directory" ]]; then
Expand Down
2 changes: 1 addition & 1 deletion src/main/git-elegant-init
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ set -e

default() {
boxtee git init
boxtee git elegant configure --local
git elegant configure --local
}
4 changes: 2 additions & 2 deletions src/main/git-elegant-push-after-rebase
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
set -e

default() {
boxtee git elegant rebase
boxtee git elegant push
git elegant rebase
git elegant push
}

0 comments on commit 16d9542

Please sign in to comment.