React + vite
git clone https://github.com/Ezeh20/Editable-Portfolio.git
npm install
npm install vite
npm run dev
- dev -> this is the branch we are working with
- main -> dev will be merged to main when we are done
- Clone the repo `git clone clone https://github.com/Ezeh20/Editable-Portfolio.git
- checkout to the dev branch
git checkout dev
- Create a your own branch eg
git checkout -b Feat/auth dev
- add your changes, do
git add .
- Commit your changes with a clear message :
git commit -m "your commit message"
. - Pull from the dev branch before you push to avoid conflict, run
git pull origin dev
. - Push your new branch, run
git push -u origin Feat/auth
. - Create a pull request to the
dev
branch notmain
Don't merge your branch yourself