Rodrigo Silva Mendoza <rodrigosilvamendoza3@xxxxxxxxx> writes: > What I've got that I think works > 1. Get the ref from the origin that points to `HEAD`. Extract the ref > from the output. > 2. Manually update the `HEAD` ref with the extracted output prior step > > Like so: > ``` > $ git ls-remote --symref origin HEAD > ref: refs/heads/good_main_3 HEAD > 0666a519f94b8500ab6f14bdf7c9c2e5ca7d5821 HEAD > > $ git symbolic-ref HEAD refs/heads/good_main_3 > ``` > > Does this make sense? Yes. That soudns like the right thing to do.