I work on a Django project with git and I am lost.
(我使用git进行Django项目,但我迷路了。)
In local I have 3 branch:
(在本地我有3个分支:)
- master
(主)
- feature/4
(功能/ 4)
- feature/6 (derived from feature/4)
(Feature / 6(源自Feature / 4))
so my most advance branch is feature/6
(所以我最先进的分支是Feature / 6)
I would like to merge with master but I have conflicts I do not manage to resolve
(我想与大师合并,但有冲突,我无法解决)
In my remote repository (Gitlab) , I push my feature/6 branch and make a merge request.
(在我的远程存储库(Gitlab)中 ,我推送了feature / 6分支并提出了合并请求。)
But due ton conflict, I can't merge and Gitlab do not let me resolve conflict (no button available)
(但是由于存在大量冲突,我无法合并,并且Gitlab不允许我解决冲突(无可用按钮))
what should I do?
(我该怎么办?)
ask by SLATER translate from so