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
inception_fetch
elif [ "$1" == "merge" ]; then
inception_merge
+else
+ inception_usage
fi