Skip to content

Instantly share code, notes, and snippets.

@onurdegerli
Last active August 29, 2015 13:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save onurdegerli/8820427 to your computer and use it in GitHub Desktop.
Save onurdegerli/8820427 to your computer and use it in GitHub Desktop.
Show files commit history from git in a loop.
#!/bin/bash
for i in $(eval echo {$2..$3})
do
git show HEAD~${i} ${1}
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment