This project is using the conventional commits standard. Please follow these steps to ensure your commit messages are standardized:
- Commit messages should have this format:
<type>[optional scope]: <description>
- Type must be one of the following:
- docs: Documentation only changes
- feat: A new feature
- style: Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc)
- Scope should be
ui
orglobal
- Description should be concise.
- Example:
feat(ui): added image gallery
- Run
git fetch upstream
&git rebase upstream/master
to fetch updated codebase into your local repository before creating any new branch. - Run
git checkout -b <your-branch-name>
- Fork and clone the repository.
- Add remote upstream
git remote add upstream https://github.com/prajjwalkapoor/hall4-website.git