ueno-llc / react-native-starter

Professional react-native starter kit with everything you'll ever need to deploy rock solid apps
https://ueno-llc.github.io/react-native-starter
MIT License
574 stars 90 forks source link

Update existing project #207

Closed Amurmurmur closed 5 years ago

Amurmurmur commented 5 years ago

How do you update a currently existing react-native-starter project to the latest version of the boilerplate or at least merge changes.

jeremybarbet commented 5 years ago

We don't have any update script to do it. But what we do is to have a remote pointing to this repository and fetching it to get latest updates.

You fetch and merge from upstream, and brace yourself for merge conflicts.

git remote add upstream git@github.com:ueno-llc/react-native-starter.git
git fetch upstream master
git merge upstream/master
Amurmurmur commented 5 years ago

@jeremybarbet Sweet thank you very much for your help.

Thats exactly what I was looking for.