Last active
November 15, 2022 02:47
-
-
Save oleglomako/eaacd8670bda3720a37de2c8acaf910e to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Как отправлять исходники в несколько репозиториев одной командой: | |
Создаем новый remote например "all" | |
git remote add "all" [email protected]:username/my-repo.git | |
и добавляем в него несколько адресов для пуша | |
git remote set-url --add --push "all" git@username/my-repo.git | |
git remote set-url --add --push "all" [email protected]:username/my-repo.git | |
Чтобы запушить сразу в два репозитория | |
git push all |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Есть побочный эффект. Указатели на головные коммиты удалённых репозиториев не двигаются. Чтобы подвинуть, нужно сделать git push для каждого репозитория. Пушить нечего, но голова перемещается.