How to push to 2 repositories at the same time and keep them in sync

I had the need to have 2 GitHub repositories with the same exact content.

Whenever I pushed my changes, those changes had to be sent to those 2 repositories without any extra work.

So here’s what I did.

I already had a working reposit…


This content originally appeared on flaviocopes.com and was authored by flaviocopes.com

I had the need to have 2 GitHub repositories with the same exact content.

Whenever I pushed my changes, those changes had to be sent to those 2 repositories without any extra work.

So here’s what I did.

I already had a working repository with some code, set up as the origin remote in Git.

I created a new empty repository on GitHub, and I set is as another URL for the origin remote:

git remote set-url --add --push origin git@github.com:flaviocopes/original.git

git remote set-url --add --push origin git@github.com:flaviocopes/clone.git

That’s it. Now doing a “git push” sends the changes to both repositories.


This content originally appeared on flaviocopes.com and was authored by flaviocopes.com


Print Share Comment Cite Upload Translate Updates
APA

flaviocopes.com | Sciencx (2021-05-01T05:00:00+00:00) How to push to 2 repositories at the same time and keep them in sync. Retrieved from https://www.scien.cx/2021/05/01/how-to-push-to-2-repositories-at-the-same-time-and-keep-them-in-sync/

MLA
" » How to push to 2 repositories at the same time and keep them in sync." flaviocopes.com | Sciencx - Saturday May 1, 2021, https://www.scien.cx/2021/05/01/how-to-push-to-2-repositories-at-the-same-time-and-keep-them-in-sync/
HARVARD
flaviocopes.com | Sciencx Saturday May 1, 2021 » How to push to 2 repositories at the same time and keep them in sync., viewed ,<https://www.scien.cx/2021/05/01/how-to-push-to-2-repositories-at-the-same-time-and-keep-them-in-sync/>
VANCOUVER
flaviocopes.com | Sciencx - » How to push to 2 repositories at the same time and keep them in sync. [Internet]. [Accessed ]. Available from: https://www.scien.cx/2021/05/01/how-to-push-to-2-repositories-at-the-same-time-and-keep-them-in-sync/
CHICAGO
" » How to push to 2 repositories at the same time and keep them in sync." flaviocopes.com | Sciencx - Accessed . https://www.scien.cx/2021/05/01/how-to-push-to-2-repositories-at-the-same-time-and-keep-them-in-sync/
IEEE
" » How to push to 2 repositories at the same time and keep them in sync." flaviocopes.com | Sciencx [Online]. Available: https://www.scien.cx/2021/05/01/how-to-push-to-2-repositories-at-the-same-time-and-keep-them-in-sync/. [Accessed: ]
rf:citation
» How to push to 2 repositories at the same time and keep them in sync | flaviocopes.com | Sciencx | https://www.scien.cx/2021/05/01/how-to-push-to-2-repositories-at-the-same-time-and-keep-them-in-sync/ |

Please log in to upload a file.




There are no updates yet.
Click the Upload button above to add an update.

You must be logged in to translate posts. Please log in or register.