ok, so apparently to create a new git branch in the remote repository we need:
git push origin origin:refs/heads/sandbox git fetch origin git checkout --track -b sandbox origin/sandbox git pull
Now, if I want to return to the main branch, I can just do
git check wizard
If I want to return to the sandbox after returning to the master, I need
git checkout --track -b sandbox Origin / sandbox
or simply
git test sandbox
source share