diff options
author | Junio C Hamano <gitster@pobox.com> | 2013-08-01 11:52:37 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-08-01 11:52:37 -0700 |
commit | c2980866b75229c1361b1f7a2f04c9ed197588e5 (patch) | |
tree | 86d2d3d71465e5683a9226c0d4f4c18096503706 /Documentation | |
parent | 8dc84fdc48a79c70682e6c361a82d0f3e1db9a03 (diff) | |
parent | 60838613054f43d63086b0f4a7596baaee9e20c5 (diff) | |
download | git-c2980866b75229c1361b1f7a2f04c9ed197588e5.tar.gz |
Merge branch 'jx/clean-interactive'
* jx/clean-interactive:
git-clean: implement partial matching for selection
Documentation/git-clean: fix description for range
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/git-clean.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/git-clean.txt b/Documentation/git-clean.txt index 75fb543393..89979228b1 100644 --- a/Documentation/git-clean.txt +++ b/Documentation/git-clean.txt @@ -111,7 +111,7 @@ select by numbers:: '>>' like this, 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 omitted, all remaining patches are taken. E.g. "7-" to + range is omitted, all remaining items are selected. E.g. "7-" to choose 7,8,9 from the list. You can say '*' to choose everything. Also when you are satisfied with the filtered result, press ENTER (empty) back to the main menu. |