Whenever I tried git push, it returns the following
$git push
fatal: The upstream branch of your current branch does not match
the name of your current branch.
To push to the upstream branch
on the remote, use
git push origin HEAD:5.4
To push to the branch of the same name on the remote, use
git push origin 5.5
And when I checked the status:
$git status
On branch 0.2
Your branch is up to date with 'origin/5.4'.
How do I rename 5.4 to master 'origin/master'?