Make a short-and-sweet "git-add -i" synonym for "git-add --interactive"
authorJunio C Hamano <junkio@cox.net>
Wed, 17 Jan 2007 18:52:36 +0000 (10:52 -0800)
committerJunio C Hamano <junkio@cox.net>
Wed, 17 Jan 2007 18:52:36 +0000 (10:52 -0800)
Signed-off-by: Junio C Hamano <junkio@cox.net>
Documentation/git-add.txt
builtin-add.c
index a5051aad6bfdf748976430452206e40838c75ca6..b73a99d61f57c7d532bbf8dc94bf2cb167d78058 100644 (file)
@@ -7,7 +7,7 @@ git-add - Add file contents to the changeset to be committed next
 
 SYNOPSIS
 --------
-'git-add' [-n] [-v] [-f] [--interactive] [--] <file>...
+'git-add' [-n] [-v] [-f] [--interactive | -i] [--] <file>...
 
 DESCRIPTION
 -----------
@@ -52,7 +52,7 @@ OPTIONS
 -f::
        Allow adding otherwise ignored files.
 
-\--interactive::
+\i, \--interactive::
        Add modified contents in the working tree interactively to
        the index.
 
index e7a1b4d9ab43cbb7de48b099c3afb721903f516b..87e16aa2200f90e2f12673e856040ed29ee7d119 100644 (file)
@@ -10,7 +10,7 @@
 #include "cache-tree.h"
 
 static const char builtin_add_usage[] =
-"git-add [-n] [-v] [-f] [--interactive] [--] <filepattern>...";
+"git-add [-n] [-v] [-f] [--interactive | -i] [--] <filepattern>...";
 
 static void prune_directory(struct dir_struct *dir, const char **pathspec, int prefix)
 {
@@ -102,7 +102,8 @@ int cmd_add(int argc, const char **argv, const char *prefix)
        int add_interactive = 0;
 
        for (i = 1; i < argc; i++) {
-               if (!strcmp("--interactive", argv[i]))
+               if (!strcmp("--interactive", argv[i]) ||
+                   !strcmp("-i", argv[i]))
                        add_interactive++;
        }
        if (add_interactive) {