I'm using gitweb, and I'd like to view a combined diff of a range of commits (e.g. all commits that exist on a branch, but not master
). Basically I'm looking for a poor man's GitHub pull-request diff view.
The closest I've found is modifying the gitweb URL to list the commits individually that exist on the branch but not master.
http://GITWEB/REPOSITORY.git/shortlog/master..BRANCH
Which is helpful, but I also want to see a combined diff view like GitHub does.
Is it possible?