79126422

Date: 2024-10-25 15:57:24
Score: 0.5
Natty:
Report link

You can set a custom merge driver in /etc/gitlab/gitlab.rb according to GitLab documentation.

gitaly['configuration'] = {
  # ...
  git: {
    # ...
    config: [
      # ...
      { key: "merge.ours.name", value: "Keep OUR version" },
      { key: "merge.ours.driver", value: "true" },
    ],
  },
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Mr. Tao