diff options
author | Junio C Hamano <junkio@cox.net> | 2006-08-16 16:09:25 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-08-16 21:08:45 -0700 |
commit | 2cda1a214e9d2e362242027b4b622ecb3d9260de (patch) | |
tree | dbb12a6dc86bd5070772425c9b82cda32a87d8e9 /Documentation/git-apply.txt | |
parent | diff.c: make binary patch reversible. (diff) | |
download | tgif-2cda1a214e9d2e362242027b4b622ecb3d9260de.tar.xz |
apply --reverse: tie it all together.
Add a few tests, usage string, and documentation.
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'Documentation/git-apply.txt')
-rw-r--r-- | Documentation/git-apply.txt | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Documentation/git-apply.txt b/Documentation/git-apply.txt index 2ff74949a7..f1ab1f9da5 100644 --- a/Documentation/git-apply.txt +++ b/Documentation/git-apply.txt @@ -10,7 +10,8 @@ SYNOPSIS -------- [verse] 'git-apply' [--stat] [--numstat] [--summary] [--check] [--index] [--apply] - [--no-add] [--index-info] [--allow-binary-replacement] [-z] [-pNUM] + [--no-add] [--index-info] [--allow-binary-replacement] + [--reverse] [-z] [-pNUM] [-CNUM] [--whitespace=<nowarn|warn|error|error-all|strip>] [<patch>...] @@ -62,6 +63,9 @@ OPTIONS the original version of the blob is available locally, outputs information about them to the standard output. +--reverse:: + Apply the patch in reverse. + -z:: When showing the index information, do not munge paths, but use NUL terminated machine readable format. Without |