remote-curl: accept empty line as terminator
[gitweb.git] / git_remote_helpers / git / non_local.py
index f27389bb945ef423dc412c2368762439086f593e..c53e07445a48ff78535baaf7085efccb9a9aa31b 100644 (file)
@@ -63,7 +63,7 @@ def push(self, base):
         if not os.path.exists(path):
             die("could not find repo at %s", path)
 
-        args = ["git", "--git-dir=" + path, "push", "--quiet", self.repo.gitpath]
+        args = ["git", "--git-dir=" + path, "push", "--quiet", self.repo.gitpath, "--all"]
         child = subprocess.Popen(args)
         if child.wait() != 0:
             raise CalledProcessError