mirror of
https://github.com/git/git.git
synced 2024-11-01 14:57:52 +01:00
d6cb5e5f99
So now you can say git-whatchanged -p v2.6.12-rc5.. drivers/usb and it will show you what changed (as a patch) in drivers/usb since the v2.6.12-rc5 release.
4 lines
175 B
Bash
Executable file
4 lines
175 B
Bash
Executable file
#!/bin/sh
|
|
git-rev-list $(git-rev-parse --default HEAD --revs-only "$@") |
|
|
git-diff-tree --stdin --pretty -r $(git-rev-parse --no-revs "$@") |
|
|
LESS="$LESS -S" ${PAGER:-less}
|