计算机系统应用教程网站

网站首页 > 技术文章 正文

gitlab 分支合并 冲突处理

btikc 2024-09-04 03:30:45 技术文章 21 ℃ 0 评论

1、使用 gitlab 创建合并请求


master 合并到 branch_test --> compare branches and continue --> submit merge request



提示:合并冲突。

2、使用 idea 打开项目。

(1)执行:git fetch origin

(2)切换到 master 分支,更新到最新版本。

(3)切换到 branch_test 分支,更新到最新版本。

(4)执行:git merge --no-ff master

(5)打开冲突文件,解决冲突。

冲突提示:

1. <<<<<<< HEAD
2. =======
3. //    @Scheduled(cron = "0 */1 * * * ?")
4. >>>>>>> master
5.     @Scheduled(initialDelay = 10000, fixedRate = 70000)

处理冲突:

1. //    @Scheduled(cron = "0 */1 * * * ?")
2.     @Scheduled(initialDelay = 10000, fixedRate = 70000)

解决冲突:

鼠标右键 --> git --> resolve conflict


(6)提交合并

git commit -m "reslove conflict"


(7)推送到远程分支

git push origin branch_test:branch_test

Tags:

本文暂时没有评论,来添加一个吧(●'◡'●)

欢迎 发表评论:

最近发表
标签列表