-
-
Save stevenharman/5256828 to your computer and use it in GitHub Desktop.
A git command for logging all the commits on the current branch that are not on another branch as of your nearest common ancestor. Additional git-log flags come along for the ride (e.g. `git unmaster --oneline`)
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
#!/bin/sh | |
if [ $# -eq 0 ]; then | |
echo "Please specify the base branch" | |
exit 1 | |
fi | |
BASEBRANCH=$1 | |
shift | |
git log HEAD ^$(git merge-base $BASEBRANCH HEAD) --no-merges $@ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment