Git 合并 2 个分支之前比较
Git compare before Merging 2 branches
当我在 Git Hub 上请求拉取请求时,我有 2 个分支说不兼容。有没有一种方法可以在合并分支之前比较冲突的位置?
尝试
去你的分行,
git format-patch $(git merge-base HEAD otherBranch)..otherBranch --stdout | git apply --check -
otherBranch -> 要比较的分支名称。
当我在 Git Hub 上请求拉取请求时,我有 2 个分支说不兼容。有没有一种方法可以在合并分支之前比较冲突的位置?
尝试
去你的分行,
git format-patch $(git merge-base HEAD otherBranch)..otherBranch --stdout | git apply --check -
otherBranch -> 要比较的分支名称。