Skip to content

Instantly share code, notes, and snippets.

@nyctef
Created February 9, 2019 12:02
Show Gist options
  • Save nyctef/a5b80daf7e5497e7418289c0c2f89378 to your computer and use it in GitHub Desktop.
Save nyctef/a5b80daf7e5497e7418289c0c2f89378 to your computer and use it in GitHub Desktop.
function nextcommit($targetBranch) {
$nextHash = git rev-list --topo-order HEAD..$targetBranch | select -last 1
git checkout $nextHash
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment