Make "git log" use the new git-rev-parse helper

See the previous commit for explanations.
This commit is contained in:
Linus Torvalds 2005-06-13 10:07:25 -07:00
parent 178cb24338
commit f04b05697c

View file

@ -1,2 +1,2 @@
#!/bin/sh
git-rev-list --pretty HEAD | LESS=-S ${PAGER:-less}
git-rev-list --pretty $(git-rev-parse --default HEAD "$@") | LESS=-S ${PAGER:-less}