Merge branch 'jc/maint-add-p-unquote' into maint
authorJunio C Hamano <gitster@pobox.com>
Wed, 11 Mar 2009 20:55:49 +0000 (13:55 -0700)
committerJunio C Hamano <gitster@pobox.com>
Wed, 11 Mar 2009 20:55:49 +0000 (13:55 -0700)
* jc/maint-add-p-unquote:
git-add -i/-p: learn to unwrap C-quoted paths

1  2 
Documentation/git-add.txt
index e4c711bbd2d1a95d501978673bc52f7a2957fba7,6c79a87f5ab20cda05f52bad64286c4b182b6ab8..ce71838b9e17f3b68dcd19648da3a88dfe4f35bd
@@@ -136,7 -136,7 +136,7 @@@ $ git add Documentation/\\*.tx
  ------------
  +
  Note that the asterisk `\*` is quoted from the shell in this
 -example; this lets the command to include the files from
 +example; this lets the command include the files from
  subdirectories of `Documentation/` directory.
  
  * Considers adding content from all git-*.sh scripts:
  $ git add git-*.sh
  ------------
  +
 -Because this example lets shell expand the asterisk (i.e. you are
 +Because this example lets the shell expand the asterisk (i.e. you are
  listing the files explicitly), it does not consider
  `subdir/git-foo.sh`.
  
@@@ -198,8 -198,8 +198,8 @@@ one deletion)
  
  update::
  
 -   This shows the status information and gives prompt
 -   "Update>>".  When the prompt ends with double '>>', you can
 +   This shows the status information and issues an "Update>>"
 +   prompt.  When the prompt ends with double '>>', you can
     make more than one selection, concatenated with whitespace or
     comma.  Also you can say ranges.  E.g. "2-5 7,9" to choose
     2,3,4,5,7,9 from the list.  If the second number in a range is
@@@ -238,8 -238,8 +238,8 @@@ add untracked:
  
  patch::
  
 -  This lets you choose one path out of 'status' like selection.
 -  After choosing the path, it presents diff between the index
 +  This lets you choose one path out of 'status' like selection.
 +  After choosing the path, it presents the diff between the index
    and the working tree file and asks you if you want to stage
    the change of each hunk.  You can say:
  
@@@ -263,13 -263,6 +263,6 @@@ 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
  --------
  linkgit:git-status[1]