diff options
author | Jonas Gunz <himself@jonasgunz.de> | 2020-07-26 00:27:42 +0200 |
---|---|---|
committer | Jonas Gunz <himself@jonasgunz.de> | 2020-07-26 00:27:42 +0200 |
commit | 60d4b05d7c6123a975b8b5ddb9b7d18f971f41f1 (patch) | |
tree | c21198ff26d3cdbafebc8b5615a0f16792b43569 /github_sync.sh | |
parent | 8e6234483f52763b7603e5ab9876b79f4fc1250c (diff) | |
download | reposync-60d4b05d7c6123a975b8b5ddb9b7d18f971f41f1.tar.gz |
added --all to push
Diffstat (limited to 'github_sync.sh')
-rwxr-xr-x | github_sync.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/github_sync.sh b/github_sync.sh index 1426aa5..edd6a15 100755 --- a/github_sync.sh +++ b/github_sync.sh @@ -125,7 +125,7 @@ for repo in "${TO_CREATE[@]}"; do done for repo in "${TO_PUSH[@]}"; do - git -C "$REPO_DIR/$repo" push "${GH_REPOS[$repo]}" + git -C "$REPO_DIR/$repo" push --all "${GH_REPOS[$repo]}" done echo |