aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation/git-add.txt
diff options
context:
space:
mode:
authorTeemu Likonen <tlikonen@iki.fi>2008-04-02 20:06:46 +0300
committerJunio C Hamano <gitster@pobox.com>2008-04-02 10:36:31 -0700
commitcfc4ba33e3cc95a30cb808eec1b54b52450c3bdf (patch)
tree31e55f6c92dbf551720999306b313b1114dad729 /Documentation/git-add.txt
parent7ae512b7da17e8f8c474fa80fb44b023c6f83882 (diff)
downloadgit-cfc4ba33e3cc95a30cb808eec1b54b52450c3bdf.tar.gz
Describe the bug in handling filenames with funny characters in 'git add -i'
The interactive mode does not work with files whose names contain characters that need C-quoting. `core.quotepath` configuration can be used to work this limitation around to some degree, but backslash, double-quote and control characters will still have problems. Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation/git-add.txt')
-rw-r--r--Documentation/git-add.txt6
1 files changed, 6 insertions, 0 deletions
diff --git a/Documentation/git-add.txt b/Documentation/git-add.txt
index c751a17d07..35e67a06e4 100644
--- a/Documentation/git-add.txt
+++ b/Documentation/git-add.txt
@@ -226,6 +226,12 @@ diff::
This lets you review what will be committed (i.e. between
HEAD and index).
+Bugs
+----
+The interactive mode does not work with files whose names contain
+characters that need C-quoting. `core.quotepath` configuration can be
+used to work this limitation around to some degree, but backslash,
+double-quote and control characters will still have problems.
See Also
--------