Skip to content

Latest commit

 

History

History
36 lines (30 loc) · 879 Bytes

Workflow.md

File metadata and controls

36 lines (30 loc) · 879 Bytes

Development

When working on a component ensure to make a branch, save all your work to that branch, to avoid conflicting the code base.

After Cloning/ Fetching the Codebase using either of the commands -

gh repo clone 1-0s/hackathon-project

or

git clone https://github.com/1-0s/hackathon-project.git

Create a new branch using the command -

git branch example

Switch to the new branch using either of the commands -

git switch example

or

git checkout example

Ensure to make detailed and precise commits to enable other developers working the project understand the workflow. If you fix something, start your commit with FIX, if you add something, start your commit message with FEAT

 git commit -a -m 'FIX: made a change'

Push to the origin

git push