How do you keep up-to-date your fork with the NRN source preset? #187
-
If you used one of the NRN presets to build your own app, then you might face the same questions as I do, "how do I keep it up-to-date with the preset". I'm myself using a NRN preset for our own internal project at Unly. I use a This has pros/cons that are explained in: https://stackoverflow.com/questions/64483037/git-good-practices-to-keep-a-forked-project-up-to-date-with-its-source-origin-wh And you? What's your strategy? I believe we could share good practices and tips about that. For instance, I've configured my local git config with 2 remotes, one is the NRN source preset while the other is my own private github repository. This way, I can easily update my own Fork (and also cherry-pick/push commits to the source preset branch, but that's because I have write access there). |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
The |
Beta Was this translation helpful? Give feedback.
The
rebase
strategy is great to keep the git history clean, I don't have written access to NRN but I do have on my own forked version, so I have 2 remotes one for my private project and another one my forked NRN where Irebase/merge
changes from.