-
-
Save kevinkirkup/078b6c8cc6c306ec32cd to your computer and use it in GitHub Desktop.
Checkout the nth commit on a specified branch.
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/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