#!/usr/bin/env sh
# Make the trunk the default branch, so pushes to it drive the release bot;
# the method's setup chapter owns the reasoning. A repository that has no
# trunk branch yet gets one at the current default's tip — the work is
# already there — and single-trunk retires the old name.
project=""
# The forge CLI may pretty-print JSON; stripping whitespace makes every
# pattern below hold for the compact and the pretty form alike, and no
# value a pattern touches can carry whitespace of its own.
if ! ; then
current=""
fi
| |