HiruniRangana / Hacktoberfest_2021

This Repo is for first-time contributors to hacktoberfest. Code a Python program and make a pull request.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Hacktoberfest 2021

Background Info

⭐ Hacktoberfest is a month-long celebration of open source software run by DigitalOcean. During the month of October, you are invited to join the developer community by contributing to open-source projects. Create a Python Project of your choice, and make a pull request and contribute to this repo!


Requirements

✅ Projects must be developed using:

made-with-Python


🤝 How to Contribute

1. Folk this Repository

This is an Open Source project. 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. Create your Python project

Create a Python script of your choice. When you are done, Add the changes to the branch you just created using the git add command:

  • git add <FILE_NAME>

Where <FILE_NAME> is the name of your file. Now commit your changes using the git command

  • git commit -m "Adding <FILE_NAME>"

Again, where <FILE_NAME> is the name of your file.

5. Push changes to GitHub

Push branch upstream for first time

  • git push --set-upstream origin <BRANCH_NAME>

Push your changes using the command git push:

  • git push origin <BRANCH_NAME>

replacing <BRANCH_NAME> with the name of the branch you created earlier.

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!


Contact me

🌎 If you have any questions about this project, feel free to get in touch.

Gmail GitHub


License

⚖️This project is licensed under the MIT License.

MIT-License

About

This Repo is for first-time contributors to hacktoberfest. Code a Python program and make a pull request.

License:MIT License


Languages

Language:Python 100.0%