public
Description: A bunch of random scripts I've either written, downloaded or clipped from #git.
Homepage:
Clone URL: git://github.com/jwiegley/git-scripts.git
git-scripts / git-hunt-and-seek
100755 6 lines (4 sloc) 0.101 kb
1
2
3
4
5
6
#!/bin/bash
 
for hash in $(grep ^commit | awk '{print $2}'); do
git diff-directory $1 $hash
done