我有远程存储库.我做:
git clone https://mylogin@bitbucket.org/mylogin/myrepo.git
Run Code Online (Sandbox Code Playgroud)
克隆成功.我有git tree:
C(master)
| B:A
|/
B/
|
A
|
A0
|
A01(原点/头)(原点/主)
|
(一些提交)
我需要:
B:A
C(主人)/
我需要rebase分支B到C(主)我做什么:
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 …Run Code Online (Sandbox Code Playgroud) 我已经从 csv 文件创建了 pandas 框架。我想使用 lambda 选择行。但这不起作用。我使用这个 pandas 手册。
例外:

有什么问题吗?谢谢。