Skip to content

Latest commit

 

History

History
47 lines (37 loc) · 1.01 KB

CONTRIBUTING.md

File metadata and controls

47 lines (37 loc) · 1.01 KB

Welcome to Open-Source-Chandigarh contributing guide

Thank you for investing your time in contributing to our project! In this guide you will get an overview of the contribution workflow from opening an issue, creating a PR, reviewing, and merging the PR.

🤝 Wanna Contribute to this project

You can contribute to this project by following these simple steps:

Step-1:

Fork this repo by clicking on fork button at top-right corner.

Step-2:

Clone this repo

https://github.com/your_username/repo_name.git

Step-3:

Make the changes that you want.

Step-4:

Create a new branch

git branch branch_name
git checkout branch_name

Step-4:

Save changes and Commit changes

git add .
git commit -m "add message"

Step-5:

Make PR

git push origin branch_name

Then go to github repo, there will be automatically a button generated to create pull request, just click that button.

Congratulations🎉, you have successfully created the PR.