Skip to content

Latest commit

 

History

History
72 lines (45 loc) · 1.81 KB

CONTRIBUTING.md

File metadata and controls

72 lines (45 loc) · 1.81 KB

How to get started? 🏗

To start contributing you need to follow the below steps in proper order

0. Create your own issue or choose one already mentioned in under issues section.

1. Fork this repo.

2. Clone your fork copy of the project which'll be visible in your account.

git clone --depth 1 https://github.com/<your_user_name>/Toggle_Keys_Notification.git

3. Navigate to the project directory 📁 .

cd Toggle_Keys_Notification

4. Add a remote upstream to the original repository.

git remote add upstream https://github.com/skate1512/Toggle_Keys_Notification.git

5. Check the remotes for the repository.

git remote -v

6. It is always advised to take a pull from the upstream repository to your master branch to keep it even with the main project(updated repository).

git pull upstream master(or main)

7. Create a new branch.

git checkout -b <your_branch_name>

8. Perform your desired changes to the code base.

9. Track your changes:heavy_check_mark: .

git add . 

10. Commit your changes .

git commit -m "Message related to changes you made in the code"

11. Push the committed changes in your feature branch to your remote repo.

git push -u origin <your_branch_name>

12. To create a pull request, click on compare and pull requests. Please ensure that both the branches are even in order to avoid merge conficts

13. Add a title and description to your PR explaining the features you added.

14. Click on Create Pull Request.

✨This project and everyone participating in it is governed by Code Of Conduct. By participating, you are expected to uphold this code.✨