gitgerritgit-review

Why is branch gerrit/master so far behind?


Every time I checkout to a review branch using git-review like:

j ❯❯❯ git-review -d 5779
Downloading refs/changes/79/5779/1 from gerrit
Switched to branch "review/jezor/5779"

the status command tells me I'm way ahead the gerrit/master branch:

j ❯❯❯ git status
On branch review/jezor/5779
Your branch is ahead of 'gerrit/master' by 364 commits.
  (use "git push" to publish your local commits)
nothing to commit, working tree clean

So I checked out to the gerrit/master branch:

j ❯❯❯ git checkout gerrit/master
Note: checking out 'gerrit/master'.

You are in 'detached HEAD' state. You can look around, make experimental
changes and commit them, and you can discard any commits you make in this
state without impacting any branches by performing another checkout.

If you want to create a new branch to retain commits you create, you may
do so (now or later) by using -b with the checkout command again. Example:

  git checkout -b <new-branch-name>

HEAD is now at cb563f2e... Old, old commit from six months ago

And then tried rebasing current master and pushing new changes to it:

j ❯❯❯ git pull --rebase origin master
From ssh://my.projects.review:29418/some_project
 * branch              master     -> FETCH_HEAD
First, rewinding head to replay your work on top of it...
Fast-forwarded HEAD to dcf5ac6807455dcca33e288d830515c6bfe89aa0.

j ❯❯❯ git push origin HEAD:gerrit/master
error: unable to push to unqualified destination: gerrit/master
The destination refspec neither matches an existing ref on the remote nor
begins with refs/, and we are unable to guess a prefix based on the source ref.
error: failed to push some refs to 'ssh://jezor@my.projects.review:29418/some_project'

... as you can see, unsuccessfully.

It doesn't bother me or my team much, as we are used to it. It would be nice to keep the repository clean though. I am guessing this line in git-review script is responsible for this behavior (setting upstream to gerrit/master instead of master).

Why is this branch so far behind?

Can I update it somehow?

Otherwise, can I get rid of it completely?


Solution

  • First of all, let clarify the difference between "master" and "gerrit/master" terms:

    Things to check: