Skip to content

Instantly share code, notes, and snippets.

@stevenharman
Forked from searls/git-unmaster
Last active December 15, 2015 11:59
Show Gist options
  • Save stevenharman/5256828 to your computer and use it in GitHub Desktop.
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`)
#!/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