假设名为 A 的分支 在 A 中,会创建一个名为 B 的新分支。
B 演变涉及创建 ONE 提交有关创建3个文件:
而 A 保持不变。
我想从 A 创建一个名为 C 的分支,集成仅 File1 和 File2 来自 B 。
处理这种情况的好习惯是什么,没有任何基本和丑陋的复制/粘贴?
答案 0 :(得分:1)
从分支A开始:
-n
git add File1 File2
git commit -m "commit message"
选项是在不创建提交的情况下挑选更改,这是必要的,因为您不希望B上提交的所有更改。
If BR_TeamReport.ListCount > 0 Then
For i = 0 To BR_TeamReport.ListCount - 1
For y = 0 To BR_Team.ListCount - 1
If BR_TeamReport.ItemData(i) = BR_Team.ItemData(y) Then
MsgBox ("Don't Delete")
Else
MsgBox ("Delete")
End If
Next y
Next i
End If