How to merge new version? #2151
-
How do you guys merge new version? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
AFAIK unfortunately not. Git already does the best it can do automate the merge process, but in the end more complex merges must be done manually to ensure everything goes as expected. What I do in my case is try to keep my site as up-to-date as possible with the template. In my current setup I set meld as my mergetool, and basically use it kind of like in this video. The difference is that I set git config --global merge.tool meld Then when solving merge I just call But in the past I had to clone the repo again and do a manual comparison between entire directories with meld. |
Beta Was this translation helpful? Give feedback.
AFAIK unfortunately not. Git already does the best it can do automate the merge process, but in the end more complex merges must be done manually to ensure everything goes as expected. What I do in my case is try to keep my site as up-to-date as possible with the template. In my current setup I set meld as my mergetool, and basically use it kind of like in this video. The difference is that I set
meld
to be my defaultmergetool
, with:Then when solving merge I just call
git mergetool
and it automatically opensmeld
.But in the past I had to clone the repo again and do a manual comparison between entire directories with meld.