From e764b8e8b3c50b131be825532ba26fa346d6586e Mon Sep 17 00:00:00 2001 From: Linus Torvalds Date: Wed, 1 Jun 2005 09:13:26 -0700 Subject: Add "git" and "git-log-script" helper scripts. The "git" script is just shorthand: "git xyz " will just execute "git-xyz-script ", which is useful for people used to the CVS naming convention. So "git log" will run the new git-log-script, which is just a wrapper around the new pretty-printing git-rev-list. Cheesy. --- git-log-script | 2 ++ 1 file changed, 2 insertions(+) create mode 100755 git-log-script (limited to 'git-log-script') diff --git a/git-log-script b/git-log-script new file mode 100755 index 000000000..317aa9b0d --- /dev/null +++ b/git-log-script @@ -0,0 +1,2 @@ +#!/bin/sh +git-rev-list --pretty HEAD | LESS=-S ${PAGER:-less} -- cgit v1.2.1