diff options
| -rwxr-xr-x | reposync.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/reposync.py b/reposync.py index 6aaf47d..5458cd5 100755 --- a/reposync.py +++ b/reposync.py @@ -16,6 +16,9 @@ while(True): continue repo = Repo(line) + for remote in repo.remotes: + remote.fetch() + if not repo.bare: branch = repo.active_branch |
