aboutsummaryrefslogtreecommitdiff
path: root/ssh-sync-repos.py
diff options
context:
space:
mode:
Diffstat (limited to 'ssh-sync-repos.py')
-rwxr-xr-xssh-sync-repos.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/ssh-sync-repos.py b/ssh-sync-repos.py
index 803f65a..5d585a3 100755
--- a/ssh-sync-repos.py
+++ b/ssh-sync-repos.py
@@ -17,6 +17,7 @@ for repo in sorted(info["repos"]):
print repo
pull = os.path.isdir(repo)
if pull:
+ subprocess.check_call(("git", "fetch", "--all"), cwd = repo)
subprocess.check_call(("git", "pull"), cwd = repo)
else:
subprocess.check_call(("git", "clone", "%s:%s.git" % (user, repo), repo))