9 月 10, 2022 git conflict by admin Leave Comment .PDF 📄git conflict 是日常协作中必不可少的。 在gitlab的web页面上,有三种处理conflict的视图,其中line的文本方式最灵活。 这种方式中: 其中<<<<<<< HEAD 到 ======= 中间的内容是local提交的。 ======= 到 >>>>>>> commit-id 是远程仓库中的内容。 示例: <<<<<<< HEAD 新提交的代码xxx ======= 远程仓库的代码xxx >>>>>>> commit-id