diff options
author | Junio C Hamano <junkio@cox.net> | 2006-04-28 23:20:52 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-04-28 23:20:52 -0700 |
commit | 65056021f2d2dcb7a72f05c5d6cbbd79a79b9d40 (patch) | |
tree | 892edb420301e82711333ecebbcbdfcc8c94af41 /git.c | |
parent | 89719209f48fe7d9694710795b1ec1d5fd7ebfc0 (diff) | |
download | git-65056021f2d2dcb7a72f05c5d6cbbd79a79b9d40.tar.gz git-65056021f2d2dcb7a72f05c5d6cbbd79a79b9d40.tar.xz |
built-in diff.
This starts to replace the shell script version of "git diff".
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'git.c')
-rw-r--r-- | git.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -46,6 +46,7 @@ static void handle_internal_command(int argc, const char **argv, char **envp) { "log", cmd_log }, { "whatchanged", cmd_whatchanged }, { "show", cmd_show }, + { "diffn", cmd_diff }, }; int i; |