Suppose I have a feature_x git branch created from the master branch. I want to review the changes made on feature_x, in other words - what changes would be made to master if feature_x was to be merged into it now?
This is exactly what GitHub pull requests show, but I want to see the difference in Git Extensions without creating a pull request. The latest version of Git Extensions (2.49) has a very useful "compare branches" feature, which does exactly this.
The only problem is that if I compare to the latest commit on master this includes other changes made to master since it was last merged into feature_x. So instead of the latest commit on master I want to use the last commit that was merged into feature_x as the basis for comparison. How do can I find it, easily and reliably (preferably in Git Extensions, but a git command would do)?
This will do exactly what you want, showing a diff of the changes that are in
feature_x
but not inmaster
. Be aware that there are three dots intentionally. With two dots you would compare the latestmaster
vs. the latestfeature_x
.