Commit your code regularly and meaningfully. This helps both you and your team lead in case you ever need to return to old code for any number of reasons.
- Create a forked copy of this project.
- Clone your OWN version of the repository in your terminal
- CD into the project base directory
cd base-react - Download project dependencies by running
npm install - Start up the app using
npm start - Create a new branch: git checkout -b
<>. - Implement the project on your newly created
<>branch, committing changes regularly. - Push commits: git push origin
<>.