Open
Description
My workflow is
git switch master && git pull
git switch -c my_new_branch
(orgit branch -m my_new_branch
)git hub pull new
at this point, git hub
creates a new branch fork/my_new_branch
. But it does not set it as the tracking branch (i.e. git push -u fork my_new_branch
), which means I can’t just update the branch with git push
, and I always have to run git push -u fork HEAD
.
I wonder if git hub
could not do that automatically (at least if no other tracking branch is present).