Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'git-remote-testgit.py')
-rw-r--r--git-remote-testgit.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/git-remote-testgit.py b/git-remote-testgit.py
index af4d040353..0b5928d290 100644
--- a/git-remote-testgit.py
+++ b/git-remote-testgit.py
@@ -147,11 +147,15 @@ def do_export(repo, args):
sys.stdout.flush()
update_local_repo(repo)
- repo.importer.do_import(repo.gitdir)
+ changed = repo.importer.do_import(repo.gitdir)
if not repo.local:
repo.non_local.push(repo.gitdir)
+ for ref in changed:
+ print "ok %s" % ref
+ print
+
COMMANDS = {
'capabilities': do_capabilities,