I found some framework that gives its code using git. So, any their updates can be pulled and merged into my own code.
But the same moment I have my code linked to my own remote repository.
So, the question is -how- and if it's even possible to have the same code linked to one remote repo for pulling their updates and to another one to pushing all updates there? So the workflow could be:
- Create my own local repo and pull the code from the remote repo #1.
- Do my development in my local repo and push the code to my remote repo #2.
- Pull updates if any from the repo #1.
- Go to step 2.
How? Possible?