-
The FATES team changed the name of the master branch to main on November 22, 2022. While GitHub automatically handles the retargeting of names behind the scenes, users need to manually update their local branches to point to the new main branch. The comment below provides the instructions. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
TL;DR:
Step-by-step explanation: The following assumes that the user has cloned the NGEET repository and have not changed the
For personal forks of the NGEET repository, you may also update your personal Reference issue: #664 |
Beta Was this translation helpful? Give feedback.
TL;DR:
Step-by-step explanation:
The following assumes that the user has cloned the NGEET repository and have not changed the
master
branch name already. The<repo remote name>
below defaults toorigin
unless you have changed it to something different (usinggit remote rename
command). To check the name of the remote associated with NGEET, run thegit remote -v
command and look for the name associated with theNGEET/fates.git
address.master
branch tomain
:git branch -m master main
g…