Try creating a feature branch to experiment with a new design system. Using a feature branch will keep your original code safe from any confusing mistakes. Plus you can always merge your feature into main when you're happy
- Create a new branch in one of your repositories.
git checkout -b feature-title
- Add a css framework to it and push it to remote
- make sure to add
node_modules/
to your.gitignore
- Happy Hacking!
- If you need to edit your original branch. Remember that you need to switch back to it
- to do this, use the command
git checkout main
- then to go back to your feature, you would use
git checkout feature-name
- to do this, use the command