How to perform a 3-way visual diff on git? -
I want to differentiate the 3-way difference of a single file in 2 different branches, that is, the previous commitments in each branch Also consider the common ancestor I want to use an external device which allows 3-way comparison I was considering using git difftool but as far as I could see it was only given a given To compare any 2 versions of the file Nomination is that I can use mergetool, but it forces me to merge GIT first so that the base, remote and local variables are set. I do not want to run the git merge, I just want to do a 3-way difference, to see that the changes made on the file were made before considering the general ancestor in both the files.
Do I need to use difftool or mergetool? Thanks
A solution is a scene that works directly on GIT modification and supports N-ideas Does. / P>
For example, you can open a three different difference between the different branches for the file:
diffuse -r master -r HEAD -r upstream file .txt
Comments
Post a Comment