1

I have a private repository in GitHub. I cloned electron-react-boilerplate and then, I changed the origin to my repository. I have made some significant changes (Changed the renderer and some eslint and TS config as it was too strict for me) and pushed it to my Private Repo.

2 days after, ERB released v4.3.0. Now, how do I merge the changes to my repo? Should I start from scratch again?

samcodee
  • 103
  • 13

1 Answers1

0

The solution is to set multiple remotes. Here is the reference on how to do that. pull/push from multiple remote locations

After setting a remote say named alt. You can do

git pull alt master

Amit
  • 3,662
  • 2
  • 26
  • 34
  • 1
    It does really work. I have been pushing 20 commits flawlessly. I also found a amazon post about this - [Click here](https://docs.aws.amazon.com/codecommit/latest/userguide/how-to-mirror-repo-pushes.html) – samcodee Oct 27 '21 at 14:29