Replies: 1 comment
-
Option AAfter generating a new project from this template, subscribe to React Starter Kit updates by watching all activities in this repository. Whenever a new PR is created, you would review modified files and the PR description. Then pull the latest version of the template to your local machine ( Option BIf you don't mind having full # Create a new project folder from the template
$ git clone -o seed -b main --single-branch https://github.com/kriasoft/react-starter-kit.git example
# Add your Git repository as the origin
$ cd ./example
$ git remote add origin https://github.com/user/example.git
$ git push origin main -u
# Pull and merge updates from the template repository down the road
$ git checkout main
$ git fetch seed
$ git merge seed/main And resolve conflicts using VSCode, WebStorm, Beyond Compare, or some other Git merge tool. Pro Tip: Update your global Git config with the preferred merge tool: |
Beta Was this translation helpful? Give feedback.
-
I am developing node and react web app based on react-starter-kit.
As any project do, I override unnecessary code and files, and modify others as well.
Trying to keep up with the almost daily updates, I can't find a way to keep my project updated unless I resolve loads of conflicts every time.
The repository suggests to just merge to master, but it produces a lot of conflicts. Is there a quick and more reasonable way to do it?
stack overflow question
Beta Was this translation helpful? Give feedback.
All reactions