Skip to content

Latest commit

 

History

History
105 lines (58 loc) · 4.16 KB

README.md

File metadata and controls

105 lines (58 loc) · 4.16 KB

🎃 Open-Source Celebration 🎃

🎃 What is Hacktoberfest?

Hacktoberfest A month-long celebration of open source software from October 1st - 31st sponsored by Digital Ocean and GitHub to get people involved in Open Source. Create your very first pull request to any public repository on GitHub and contribute to the open source developer community.

How to contribute to this project

There are two (2) ways to contribute to this project:

  • Add your name to CONTRIBUTORS.md file
  • Add a small Python project/script of your choice


👉 Getting Started

Click to view Instructions!

1. Folk this Repository

Folk this Repo by clicking on the fork button on the top of this page. This will create a copy of this repository in your account.

image

2. Clone the Repository

Now clone the forked repository to your machine. Go to your GitHub account, open the forked repository, click on the code button and then click the copy to clipboard icon. Open a terminal and run the following git command:

  • git clone https://github.com/{username}/Hacktoberfest_2021.git

Where {username} is your GitHub username. This copies the contents of the Hacktoberfest repository on GitHub to your computer.

3. Create a branch

Change to the repository directory on your computer (if you are not already there):

  • cd Hacktoberfest_2021

Now create a branch using the git checkout command:

  • git checkout -b {branch-name}

Where {branch-name} is your branch name.

4. Add your Contribution

Either add your name to the CONTRIBUTORS.md file or add a small Python program of your choice. When you are done, Add the changes to the branch you just created using the git add command:

  • git add <filename>

Now commit your changes using the git command:

  • git commit -m "Adding <filename>"

5. Push changes on forked Repo

  • git push -u origin {branch-name}

6. 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. Then submit your pull request.

Pull Request

Pull Request

Congratulations!

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


Reference Links


Contributors

License

This project is Public Domain and licensed under the MIT License.