Code

git-add: make -A description clearer vs. -u
authorMichael J Gruber <git@drmicha.warpmail.net>
Sun, 27 Feb 2011 15:50:10 +0000 (16:50 +0100)
committerJunio C Hamano <gitster@pobox.com>
Sun, 27 Feb 2011 23:34:54 +0000 (15:34 -0800)
Currently, it sounds as if "notice removal of files" distinguishes "-A"
from "-u", and there is no mention of the worktree.

But both notice the removal, and only "-A" adds changes from untracked
files. Say so.

Signed-off-by: Michael J Gruber <git@drmicha.warpmail.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin/add.c

index 42c906ea06b3d20d88ed6ba1c83d894d4e24f163..5c9f4afef21908f3d5814ad0f9e6f2b5ff55b0b8 100644 (file)
@@ -322,7 +322,7 @@ static struct option builtin_add_options[] = {
        OPT__FORCE(&ignored_too, "allow adding otherwise ignored files"),
        OPT_BOOLEAN('u', "update", &take_worktree_changes, "update tracked files"),
        OPT_BOOLEAN('N', "intent-to-add", &intent_to_add, "record only the fact that the path will be added later"),
-       OPT_BOOLEAN('A', "all", &addremove, "add all, noticing removal of tracked files"),
+       OPT_BOOLEAN('A', "all", &addremove, "add changes from all tracked and untracked files"),
        OPT_BOOLEAN( 0 , "refresh", &refresh_only, "don't add, only refresh the index"),
        OPT_BOOLEAN( 0 , "ignore-errors", &ignore_add_errors, "just skip files which cannot be added because of errors"),
        OPT_BOOLEAN( 0 , "ignore-missing", &ignore_missing, "check if - even missing - files are ignored in dry run"),