Until now, HEAD could be used with git-push to push the current
branch. Now @ is a shortcut to HEAD, but it didn't work when
pushing branches. It fails with:

  fatal: remote part of refspec is not a valid name in @

Reinterpret all branch names from argv in order for @ to be used
when pushing branches.

Signed-off-by: Tomo Krajina <tkraj...@gmail.com>
---
 builtin/push.c | 15 ++++++++++++++-
 1 file changed, 14 insertions(+), 1 deletion(-)

diff --git a/builtin/push.c b/builtin/push.c
index 7b1b66c..51c0200 100644
--- a/builtin/push.c
+++ b/builtin/push.c
@@ -494,7 +494,20 @@ int cmd_push(int argc, const char **argv, const char 
*prefix)
 
        if (argc > 0) {
                repo = argv[0];
-               set_refspecs(argv + 1, argc - 1);
+
+               char *refs[argc - 1];
+               int i;
+               for(i = 1; i < argc; i++) {
+                       refs[i - 1] = argv[i];
+
+                       struct strbuf buf = STRBUF_INIT;
+                       interpret_branch_name(argv[i], strlen(argv[i]), &buf);
+
+                       if(buf.buf && strlen(buf.buf) > 0)
+                               refs[i - 1] = buf.buf;
+               }
+
+               set_refspecs(refs, argc - 1);
        }
 
        rc = do_push(repo, flags);
-- 
1.8.5

--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to