mirror of
https://github.com/git/git.git
synced 2024-11-18 15:14:36 +01:00
e764b8e8b3
The "git" script is just shorthand: "git xyz <args>" will just execute "git-xyz-script <args>", 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.
3 lines
62 B
Bash
Executable File
3 lines
62 B
Bash
Executable File
#!/bin/sh
|
|
git-rev-list --pretty HEAD | LESS=-S ${PAGER:-less}
|