diff options
author | Junio C Hamano <gitster@pobox.com> | 2008-07-06 18:36:01 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2008-07-06 19:33:08 -0700 |
commit | f55638874774acc1e13a046353449ebc8734ab08 (patch) | |
tree | ec45c4c37712d651ec7caa1100aaddd4d7c96944 /builtin-apply.c | |
parent | 8ee4a6c2ec6738cfbc815dc59e44825f2a9b9f15 (diff) | |
download | git-f55638874774acc1e13a046353449ebc8734ab08.tar.gz git-f55638874774acc1e13a046353449ebc8734ab08.tar.xz |
git-apply --directory: make --root more similar to GNU diff
Applying a patch in the directory that is different from what the patch
records is done with --directory option in GNU diff. The --root option we
introduced previously does the same, and we can call it the same way to
give users more familiar feel.
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin-apply.c')
-rw-r--r-- | builtin-apply.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/builtin-apply.c b/builtin-apply.c index 6c3db60b6..c242bbd83 100644 --- a/builtin-apply.c +++ b/builtin-apply.c @@ -3130,8 +3130,8 @@ int cmd_apply(int argc, const char **argv, const char *unused_prefix) inaccurate_eof = 1; continue; } - if (!prefixcmp(arg, "--root=")) { - arg += strlen("--root="); + if (!prefixcmp(arg, "--directory=")) { + arg += strlen("--directory="); root_len = strlen(arg); if (root_len && arg[root_len - 1] != '/') { char *new_root; |