I have branch say "experiment" and it was pushed a few days back. Now, the master has been updated and I need to push experiment again after rebasing it to master. But when I rebase it to master I don't see the patch of experiment on top of master. My experiment branch points to master.
What could be wrong? Could it be because this experiment branch has been already merger with the master or something else?
Git status
$ git status
On branch experiment
Untracked files:
(use "git add ..." to include in what will be committed)
a.txt
nothing added to commit but untracked files present (use "git add" to track)
Git log
$ git log experiment
commit bc6c71d5ec6d8798aa283c9feaec844cd03edc60
Author: ssrivastava
Date: Tue Nov 27 12:15:37 2012 +0530
[experiment] Added index to players status
On rebase to master
First, rewinding head to replay your work on top of it...
Fast-forwarded experiment to master.
Generally on applying rebase it applies the latest change on the current branch on top of the base branch but I don't see anything here.
git branch -va,git status(both when ob branch and when on master), and please also tell us exactly what command(s) you used to do the rebase. – Nevik Rehnel Dec 12 '12 at 6:58