Reputation: 113
We want to change the default merge strategy provided by E Git.From git scm reference it is specified that merge strategy can be given by -X. Can it be done from eclipse as well??
Thanks in advance.
Upvotes: 2
Views: 425
Reputation: 22080
It's not possible.
Egit has an extension point to provide different merge strategies (than the default one given by the jgit implementation), but that extension point is merely meant to provide higher level semantic aware merge implementations, e.g. for merging UML diagrams in the Papyrus plugins.
You can only change the default of the merge tool content (last HEAD, workspace pre-merged, or prompt) in the git workspace preferences.
Upvotes: 1