SysBioChalmers / yeast-GEM

The consensus GEM for Saccharomyces cerevisiae
http://sysbiochalmers.github.io/yeast-GEM/
Creative Commons Attribution 4.0 International
96 stars 46 forks source link

doc: rename master and devel branches #258

Closed edkerk closed 3 years ago

edkerk commented 3 years ago

Description of the issue:

Expected feature/value/output:

main and develop branches

Current feature/value/output:

master and devel branches

To do:

edkerk commented 3 years ago

Instructions how to change your local branches

To rename your local branches and connect them to the renamed main and develop branches, run the following code in your local git repository:

git branch -m master main
git branch -m devel develop
git fetch origin
git branch -u origin/main main
git branch -u origin/develop develop
git remote set-head origin -a