It's annoying to always see that warning in quiet mode when backporting
upstream to topic branches, let's hide it.
fi
if [ -z "$BASE" ]; then
- err "Warning! No base specified, looking for common ancestor."
+ [ "$QUIET" != "" ] || err "Warning! No base specified, looking for common ancestor."
BASE=$(git merge-base --all "$REF" "${BRANCHES[@]}")
if [ -z "$BASE" ]; then
die "Couldn't find a common ancestor between these branches"