Pulp-cli default branch: name change!

Hey folks,

For consistency-with-common-practice’s sake, pulp/pulp-cli has renamed its default branch from “develop” to “main”. If you have a cloned version of pulp-cli, you’ll want to rename the “develop” branch in your fork to “main” using the github UI, and then reset the name in your local clone using the following:

cd pulp-cli/
git branch -m develop main
git fetch origin
git branch -u origin/main main
git remote set-head origin -a

Github will give you helpful dialogs to this effect when you next go to github.com/yourlogin/pulp-cli as well.

G

3 Likes