-
-
Notifications
You must be signed in to change notification settings - Fork 46
How to get started
Sanjay Krishna S R edited this page Nov 24, 2022
·
10 revisions
-
Install firebase using the following commands
npm install -g firebase-tools
-
To deploy a firebase project, use
firebase deploy
command.
- 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
dev-angular
bracnch.
Main Branch should be Given as Feat
or Fix
to define that it is a Feature or Fix respectively.
Main Branch should be a subBranch of Master.
The SubBranch should be describing 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.