Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我创建了一个这样的堆叠差异:
master - A - B - C \ D
由 .创建的所有分支arc feature branch_name。我如何将它更改为A - B - C - D同时,D 只显示它自己的更改?
arc feature branch_name
A - B - C - D
尝试过Git rebase --onto C A,但是 D 包含了 B 和 C 的所有更改。
Git rebase --onto C A
我认为你应该跑
git rebase C D
这应该足以让它像
a <- B <- C <- D