分支 B 中的 rebase 冲突问题
rebase conflict issue in branch B
我正在尝试学习变基。
我有一个分支 A,它是从 develop 分支创建的,
我从分支 A 创建了一个新的本地分支 B。
我使用这个命令 git pull --rebase origin A
做了一个 git rebase
我在做 rebase 时遇到了冲突。在我修改代码之后。
你能告诉我要执行什么命令来消除冲突吗?提供以下状态
sports/code/file (branchB)
$ git pull --rebase origin branchA
From https://gitlab.sports.com
* branch branchA -> FETCH_HEAD
First, rewinding head to replay your work on top of it...
Applying: wip html fixes
Using index info to reconstruct a base tree...
M sports/ajax.js
Falling back to patching base and 3-way merge...
Auto-merging sports/ajax.js
CONFLICT (content): Merge conflict in sports/ajax.js
error: Failed to merge in the changes.
Patch failed at 0001 wip html fixes
The copy of the patch that failed is found in: .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".
sports/code/file (branchB|REBASE 1/2)
$ git status
rebase in progress; onto 89898989892323
You are currently rebasing branch 'branchB' on '89898989892323'.
(fix conflicts and then run "git rebase --continue")
(use "git rebase --skip" to skip this patch)
(use "git rebase --abort" to check out the original branch)
Unmerged paths:
(use "git reset HEAD <file>..." to unstage)
(use "git add <file>..." to mark resolution)
both modified: sports/ajax.js
no changes added to commit (use "git add" and/or "git commit -a")
您需要:
- 打开sports/ajax.js
- 删除合并标记(
<<<<
、====
、>>>>
),选择要保留的内容,
git add .
(无需提交)
git rebase --continue
我正在尝试学习变基。 我有一个分支 A,它是从 develop 分支创建的, 我从分支 A 创建了一个新的本地分支 B。 我使用这个命令 git pull --rebase origin A
做了一个 git rebase我在做 rebase 时遇到了冲突。在我修改代码之后。 你能告诉我要执行什么命令来消除冲突吗?提供以下状态
sports/code/file (branchB)
$ git pull --rebase origin branchA
From https://gitlab.sports.com
* branch branchA -> FETCH_HEAD
First, rewinding head to replay your work on top of it...
Applying: wip html fixes
Using index info to reconstruct a base tree...
M sports/ajax.js
Falling back to patching base and 3-way merge...
Auto-merging sports/ajax.js
CONFLICT (content): Merge conflict in sports/ajax.js
error: Failed to merge in the changes.
Patch failed at 0001 wip html fixes
The copy of the patch that failed is found in: .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".
sports/code/file (branchB|REBASE 1/2)
$ git status
rebase in progress; onto 89898989892323
You are currently rebasing branch 'branchB' on '89898989892323'.
(fix conflicts and then run "git rebase --continue")
(use "git rebase --skip" to skip this patch)
(use "git rebase --abort" to check out the original branch)
Unmerged paths:
(use "git reset HEAD <file>..." to unstage)
(use "git add <file>..." to mark resolution)
both modified: sports/ajax.js
no changes added to commit (use "git add" and/or "git commit -a")
您需要:
- 打开sports/ajax.js
- 删除合并标记(
<<<<
、====
、>>>>
),选择要保留的内容, git add .
(无需提交)git rebase --continue