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 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 [email protected]:flaviocopes/original.git
git remote set-url --add --push origin [email protected]:flaviocopes/clone.git
That’s it. Now doing a “git push” sends the changes to both repositories.
→ I wrote 17 books to help you become a better developer:
- C Handbook
- Command Line Handbook
- CSS Handbook
- Express Handbook
- Git Cheat Sheet
- Go Handbook
- HTML Handbook
- JS Handbook
- Laravel Handbook
- Next.js Handbook
- Node.js Handbook
- PHP Handbook
- Python Handbook
- React Handbook
- SQL Handbook
- Svelte Handbook
- Swift Handbook
Also, JOIN MY CODING BOOTCAMP, an amazing cohort course that will be a huge step up in your coding career - covering React, Next.js - next edition February 2025