It is wrong to divert to "git remote add" when you typed the (more English) "git add remote". But is it also pretty convenient. So implement it, but do not document it ;-) Signed-off-by: Johannes Schindelin <johannes.schindelin@xxxxxx> --- builtin-add.c | 7 +++++++ t/t5505-remote.sh | 6 ++++++ 2 files changed, 13 insertions(+), 0 deletions(-) diff --git a/builtin-add.c b/builtin-add.c index 5c29cc2..b5b4c2f 100644 --- a/builtin-add.c +++ b/builtin-add.c @@ -196,6 +196,13 @@ int cmd_add(int argc, const char **argv, const char *prefix) const char **pathspec; struct dir_struct dir; + if (argc > 1 && !strcmp(argv[1], "remote") && + access("remote", F_OK)) { + argv[1] = argv[0]; + argv[0] = "remote"; + return cmd_remote(argc, argv, prefix); + } + argc = parse_options(argc, argv, builtin_add_options, builtin_add_usage, 0); if (patch_interactive) diff --git a/t/t5505-remote.sh b/t/t5505-remote.sh index 2376e0a..83ed70c 100755 --- a/t/t5505-remote.sh +++ b/t/t5505-remote.sh @@ -147,4 +147,10 @@ test_expect_success 'add --mirror && prune' ' git rev-parse --verify refs/heads/side) ' +test_expect_success 'add remote' ' + (cd test && + git add remote -f another-one ../one && + git diff master remotes/another-one/master) +' + test_done -- 1.5.3.7.2157.g9598e - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html