1. Fork the Repository on GitHub: https://github.com/CANCELTHIS/TMS_FRONT.git
git clone https://github.com/CANCELTHIS/TMS_FRONT.git
cd TMS_FRONT
npm install
yarn install
git checkout -b my-new-feature
npm start
yarn start
git add . git commit -m "Description of changes"
git push origin my-new-feature
git branch -d my-new-feature git push origin --delete my-new-feature
git remote add upstream https://github.com/CANCELTHIS/TMS_FRONT.git git fetch upstream git checkout main git merge upstream/main git push origin main