Harald Pretl
11/22/2022, 10:15 PMefabless/caravel_user_project_analog
, but I forgot to select all branches, now I can not switch to the proper mpw tag. Is there some GitHub or git
magic that I can still add the branches to my fork?Mitch Bailey
11/23/2022, 12:12 AM$ git remote -v
to verify your current remote definitions. I expect you only have origin
defined, and it points to your github fork.
$ git remote add upstream <https://github.com/efabless/caravel_user_project_analog.git>
$ git remote -v
This should show 2 remotes defined.
$ git fetch upstream
This should fetch all efabless branches which you should be able to see with
$ git branch -r
Then you can checkout whatever branch you want (I hope), like this:
$ git checkout upstream/mpw-8a
Harald Pretl
11/23/2022, 7:09 AMMitch Bailey
11/23/2022, 7:21 AMFatsieFS
11/23/2022, 12:48 PM