Last active
March 26, 2019 19:56
-
-
Save rafaelstz/981fd984d5b6014374184352e322ed03 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### Show the last commits since the last merge | |
git log $(git merge-base --octopus $(git log -1 --merges --pretty=format:%P)).. --boundary | |
### Show all the files changed since the last merge via git diff | |
git diff --cc $M $M^1 $M^2 $(git merge-base $M^1 $M^2) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment