Browse Source
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.maint
Linus Torvalds
20 years ago
3 changed files with 9 additions and 2 deletions
@ -0,0 +1,4 @@
@@ -0,0 +1,4 @@
|
||||
#!/bin/sh |
||||
cmd="git-$1-script" |
||||
shift |
||||
exec $cmd "$@" |
Loading…
Reference in new issue