Skip to content
This repository has been archived by the owner on Nov 8, 2020. It is now read-only.

Latest commit

 

History

History
51 lines (35 loc) · 1.38 KB

CONTRIBUTORS.md

File metadata and controls

51 lines (35 loc) · 1.38 KB

Contribution guidelines

After cloning this repo open the project folder in a text-editor

Folder Structure

├───hacktoberfest-2020
    └───your-name folder
      └───your-name_pgm1.py
      └───your-name_pgm2.py
      └───your-name_pgm3.py
      └───your-name_pgm4.py

Write the working code for the given program statement

Commit these changes

If you go to the project directory and execute the command git status, you'll see there are changes. Add those changes to the branch you just created using the git add command:

git add .

Now commit those changes using the git commit command:

git commit -m "Added programname.py"

Push changes to github

Push your changes using the command git push:

git push origin <add-your-branch-name>

replacing <add-your-branch-name> with the name of the branch you created earlier.

Submit your changes for review

If you go to your repository on GitHub, you'll see a Compare & pull request button. Click on that button. Now submit the pull request. Soon I'll be merging all your changes into the master branch of this project. You will get a notification email once the changes have been merged.

Where to go from here?

Congrats!!🥳
You just completed the standard fork -> clone -> edit -> pull request workflow that you'll encounter often as a contributor!