Skip to content

Latest commit

 

History

History
58 lines (35 loc) · 1.21 KB

Contributing.md

File metadata and controls

58 lines (35 loc) · 1.21 KB

To start contributing, follow the below guidelines:

1. Fork this repository.

2. Clone your forked copy of the project.

git clone https://github.com/<your_username>/Python-Practice.git

3. Navigate to the project directory 📁 .

cd Python-Practice

4. Always take a pull from the master branch to remain updated

git pull origin master

5. Create a new branch.

git checkout -b <your_branch_name>

6. Perfom your desired contribution

7. Track your changes:heavy_check_mark: .

git add . 

8. Commit your changes .

git commit -m "Commit Message"

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

git push -u origin <your_branch_name>

10. To create a pull request, click on compare and pull requests. Please ensure you compare your feature branch to the desired branch of the repo you are suppose to make a PR to.

11. Add appropriate title and description to your pull request explaining your changes and efforts done.

12. Click on Create Pull Request.

13 Yay! You have made a PR to the repository. Sit back patiently PR is reviewed.