git rebase avec conflit ne fonctionne pas

J'ai référentiel distant.
Je n':

git clone https://[email protected]/mylogin/myrepo.git

Clone succès.
J'ai arbre git:
C(master)
|    B:
|   /
B /
|
Une
|
A0
|
A01(origine/tête)(origin/master)
|
(certains s'engage)

J'ai besoin de:
B:
C(master) /

J'ai besoin de rebase de la branche B à C(master)
Ce que je fais:

git checkout b1
Switched to branch 'b1'
git rebase master
First, rewinding head to replay your work on top of it...
Applying: B:A
Using index info to reconstruct a base tree...
M   index1.txt
Falling back to patching base and 3-way merge...
Auto-merging index1.txt
CONFLICT (content): Merge conflict in index1.txt
Failed to merge in the changes.
Patch failed at 0001 B:A
The copy of the patch that failed is found in:
   /pth/to dir/.git/rebase-apply/patch

When you have resolved this problem, run "git rebase --continue".
If you prefer to skip this patch, run "git rebase --skip" instead.
To check out the original branch and stop rebasing, run "git rebase --abort".

git branch
* (no branch)
  b1
  master

Que dois-je faire?
Je peux passer dans la branche b1, résoudre les conflits et de s'engager, mais il aide pas (je l'ai testé).

source d'informationauteur DenisOgr | 2013-10-18