Skip to content

Instantly share code, notes, and snippets.

@kevinkirkup
Forked from airdrummingfool/nth-commit.sh
Created February 5, 2016 04:05
Show Gist options
  • Save kevinkirkup/078b6c8cc6c306ec32cd to your computer and use it in GitHub Desktop.
Save kevinkirkup/078b6c8cc6c306ec32cd to your computer and use it in GitHub Desktop.
Checkout the nth commit on a specified branch.
#!/bin/bash
# nth-commit.sh
# Usage: `nth-commit.sh n [branch]`
branch=${2:-'master'}
SHA1=$(git rev-list $branch | tail -n $1 | head -n 1)
git checkout $SHA1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment