> Hi, > > On Sun, 25 Jun 2006, Matthias Lederhofer wrote: > > > With the environment variable GIT_TRACE set git will show > > - alias expansion > > - built-in command execution > > - external command execution > > on stderr. > > Nice. Thanks :) > P.S.: Now we only have to convert all "git-" invocations in the scripts to > "git " invocations so we can benefit from it. But that would mean two > forks instead of one for the non-builtins. Hmm. Why do we not use this policy: git-* is guaranteed to be the normal command without any strange alias expansion, default parameters or something else a script does not like to be changed in the commands. So all scripts use git-*, this will prevent a double exec. The path to git-* should be obtained using git --exec-path in the beginnig. git <command> is to be used by the user if he wants aliases, default parameters and other fancy stuff. Using this policy the user can always get the normal behaviour and it is possible to shadown built-in commands etc. - : send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html