chore: standardize initial branch name to 'main' in setup scripts

This commit is contained in:
Matteo Cherubini 2026-06-09 14:56:13 +02:00
parent 238fb3ab4e
commit c0aff1ff09
2 changed files with 5 additions and 0 deletions

View file

@ -48,6 +48,9 @@ for entry in "${GENOMES[@]}"; do
# Initial genome push
git add .
git commit -m "feat: initial scaffold and git-crypt init for ${GENOME_NAME}"
git branch -M main
git push -u origin main
# Key export and instructions

View file

@ -37,5 +37,7 @@ scaffold_master "."
git add .
git commit -m "chore: initialize master scaffold" || info "No changes to commit in master."
git branch -M main
# 3. Initial Push
git push -u origin main