X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=Documentation%2Fgit-add.txt;h=9c1d3957223355e00eea917d4a7dff6d50343f32;hb=04f6785a089e552585ba022f9d9054eca385ca67;hp=35cb5d3f643905d124445ecdae3d2949ac0067a6;hpb=d9ac3e41c37ea565d8227d942b4f468616c9813a;p=git.git diff --git a/Documentation/git-add.txt b/Documentation/git-add.txt index 35cb5d3f6..9c1d39572 100644 --- a/Documentation/git-add.txt +++ b/Documentation/git-add.txt @@ -274,7 +274,8 @@ patch:: This lets you choose one path out of a '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: + the change of each hunk. You can select one of the following + options and type return: y - stage this hunk n - do not stage this hunk @@ -293,6 +294,9 @@ patch:: + After deciding the fate for all hunks, if there is any hunk that was chosen, the index is updated with the selected hunks. ++ +You can omit having to type return here, by setting the configuration +variable `interactive.singlekey` to `true`. diff::