The current branch is myBranch
and it is 2 commits behind master. I want to rebase it, so I tried
$ git rebase master
Current branch myBranch is up to date.
$ git push --set-upstream origin myBranch
Branch myBranch set up to track remote branch myBranch from origin.
Everything up-to-date
It seems everything I try, I get "it's up to date"
Anyone in this situation?