1
0
Fork 0
mirror of https://github.com/git/git.git synced 2024-10-29 21:37:53 +01:00

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>
This commit is contained in:
Teemu Likonen 2008-04-02 20:06:46 +03:00 committed by Junio C Hamano
parent 7ae512b7da
commit cfc4ba33e3

View file

@ -226,6 +226,12 @@ diff::
This lets you review what will be committed (i.e. between This lets you review what will be committed (i.e. between
HEAD and index). 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 See Also
-------- --------