Gitweb Diffs Between Versions
Our company deploys code into production primarily from our version control system. I suppose all companies do, in some way or another. We endured a long hell with CVS and a far shorter stint in the purgatory of Subversion before we went into the heavenly light of Git. The way we do it is to tag various branches destined for certain groups of machines, archive a snapshot, then copy those out to where they belong. This is all partially automated...

4 responses to “Gitweb Diffs Between Versions”
Ah, this is very convenient! Thanks a lot!
Been looking all over for this query… thanks!
Thanks, just what I was looking for
Very nice. Thank you.
I now use a slight variation to view the individual commits between a range by using a=shortlog instead of a=commitdiff.
gitweb.pl?p=your-repo.git;a=shortlog;hp=695de2d;h=fb7b608
I often set “hp=master” and “h=MY-TOPIC-BRANCH” to show only the commits on my branch that haven’t been merged into master yet. I pass that URL around for code review before it gets merged.