Closed sebawita closed 7 years ago
git remote add upstream https://github.com/TeamMaestro/angular-native-seed.git
& the rest is stolen/repeat of what's mentioned in Nathan's seed.
git fetch upstream
- This will fetch latest upstream.git merge upstream/master
- This will merge in upstream changes.I would recommend using git rebase upstream/master
over git merge
. This will keep all your development commits after the seed's changes.
I've been asked in my article by Dinesh about the required steps to update an existing
angular-native-seed
clone. I am not 100% sure what is the best way to approach it. This looks like a good topic to have an open discussion about.