-
-
Notifications
You must be signed in to change notification settings - Fork 47
How to get started
Sanjay Krishna S R edited this page Apr 28, 2023
·
10 revisions
-
Install Firebase using the following commands
npm install -g firebase-tools
-
Use the
firebase deploy
command to deploy a firebase project.
- Fork the Worktez repository.
- Clone your fork:
git clone <your forked repository>
- Add Upstream:
git remote add upstream <Original Repository>
- Check the upstream:
git remote -v
- Pull the changes from upstream:
git pull upstream dev-angular
- Create a branch:
git branch <your branch name>
- Check out your branch:
git checkout <your branch name>
- Make changes and commit them:
git commit -a
- Push your changes:
git push --set-upstream origin <your branch name>
- Create a pull request to the
dev-angular
branch.
Main Branch should be Given as Feat
or Fix
to define it as a Feature or Fix, respectively.
Main Branch should be a sub-branch of the Master.
The SubBranch should describe the Component you are working on.
Eg: Fix/Dashboard
Feat/Meets
The commit message should be limited to 72 characters.
The First Part of the commit message should contain the Brach name you are working on.
The second Part of the commit message should give a brief of the changes done.
Eg: Fix(Dashboard): Improved Labels with Lazy loading