As you all know, Git conventions have changed since its inception, and it is now recommended to name the main branch “main” rather than “master.”
Orekit and Hipparchus have already made the switch. We would like to do the same for Rugged, to ensure consistency across projects.
I will therefore rename the “master” branch of the Rugged repository to “main” this afternoon and will then let you know what steps to take to bring your local clone into compliance.
The renaming has been completed. The documentation and website have been updated. To reflect this change in your clone of the official repository, you must run the following commands:
cd /path/to/rugged/repo
git branch -m master main
git push --set-upstream main