diff options
Diffstat (limited to 'inception')
-rwxr-xr-x | inception | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -124,12 +124,12 @@ function inception_version { echo "origin/master branch:" echo "=====================" echo "" - ( cd $DIRNAME && $GIT log --show-signature -n 1 --branches=origin/master ) + ( cd $DIRNAME && $GIT log --show-signature -n 1 --remotes --branches=origin/master ) } # Fetch function inception_fetch { - ( cd $DIRNAME && $GIT fetch --all && $GIT log --show-signature -n 1 --branches=origin/master ) + ( cd $DIRNAME && $GIT fetch --all && $GIT log --show-signature -n 1 --remotes --branches=origin/master ) } # Merge @@ -154,4 +154,6 @@ elif [ "$1" == "fetch" ]; then inception_fetch elif [ "$1" == "merge" ]; then inception_merge +else + inception_usage fi |