https://hacktoberfest.digitalocean.com/
Hacktoberfest is a month (takes place from October 1-October 31 every year) long virtual festival event to celebrate open source contributions presented by DigitalOcean and DEV. https://hacktoberfest.digitalocean.com/
Hacktoberfest is open to everyone. To get the Hacktoberfest 2021 T-Shirt you need to make four Pull Requests to those projects/repositories which have hacktoberfest label, between October 1,2021 to October 31,2021 in any time zone . Before that make sure you have visited the official website and registered here
Submit your pull request here for Hacktoberfest-2021 . You can submit your Python mini projects or any solved programming questions in Python language only. Repository Link: https://github.com/neha07kumari/Mini_Python_Projects
- Make sure to go to the right folder .
- If you are adding a program in python ,then go to Programming_in_Python and follow the below steps:
<algorithm name>/
├── <implementation file> (With commented sample input/output. In Python Lnaguage only.)
I have added a sample file for your reference . 3.If you are adding a mini project in python , then go to Projects_in_Python and follow the below steps:
<project name>/
├── <project output> (Add the screenshot of the output.)
├── <project code files> (can add as many required code files.)
I have added a sample file for your reference. 4. On Making a Pull Request make sure that you write about your valuable contribution(a short intro or note about it).
- Pull requests can be made in any participating GitHub or GitLab hosted repository/projects. Look for the 'hacktoberfest' topic to know if a project is participating in Hacktoberfest.
- You can sign up anytime between October 1 and October 31. Just be sure to sign up on the official Hacktoberfest website for your pull requests to count.
- The pull request must contain commits you made yourself.
- If a maintainer reports your pull request as spam, it will not be counted toward your participation in Hacktoberfest.
- If a maintainer reports behavior that’s not in line with the project’s code of conduct, you will be ineligible to participate.
- A pull request is considered approved once it has an overall approving review from maintainers, or has been merged by maintainers, or has been given the 'hacktoberfest-accepted' label.
- Add your name to the CONTRIBUTORS.md file using following model
Name: [YOUR NAME](Github Link)
Place: city you belong to
About: Short Intro (Optional)
Make sure you have a GitHub account. In case you don't have one, you can create your account by visiting https://github.com/ and clicking on Sign up
option at the top right corner.
Link to register: https://hacktoberfest.digitalocean.com/
Click on "Start Hacking" and add your GitHub account.
Use the git clone
command along with the URL that points to your fork of the repository.
Example:
git clone https://github.com/<Your_Username>/Mini_Python_Projects
git clone https://github.com/your-username/Hacktoberfest.git
Now, we’ll create our new branch with the git branch command. Make sure you name it descriptively so that others working on the project understand what you are working on.
Now that our new branch is created, we can switch to make sure that we are working on that branch by using the git checkout command:
Once you enter the git checkout
command, you will receive the following output:
At this point, you can now modify existing files or add new files to the project on your own branch.
Once you have modified existing files or added new files to the project, you can add them to your local repository, which you can do with the git add command. Let’s add the -HelloWorld flag to add all changes that we have made:
Next, we’ll want to record the changes that we made to the repository with the git commit command.
The commit message is an important aspect of your code contribution; it helps the other contributors fully understand the change you have made, why you made it, and how significant it is. Additionally, commit messages provide a historical record of the changes for the project at large, helping future contributors along the way.
If you have a very short message, you can record that with the -m flag and the message in quotes:
At this point you can use the git push command to push the changes to the current branch of your forked repository:
While working on a project alongside other contributors, it is important for you to keep your local repository up-to-date with the project as you don’t want to make a pull request for code that will cause conflicts. To keep your local copy of the code base updated, you’ll need to sync changes.
We’ll first go over configuring a remote for the fork, then syncing the fork.
Next up, you’ll have to specify a new remote upstream repository for us to sync with the fork. This will be the original repository that you forked from. you’ll have to do this with the git remote add command.
In this example, // upstream // is the shortname we have supplied for the remote repository since in terms of Git, “upstream” refers to the repository that you cloned from. If you want to add a remote pointer to the repository of a collaborator, you may want to provide that collaborator’s username or a shortened nickname for the shortname.
Once you have configured a remote that references the upstream and original repository on GitHub, you are ready to sync your fork of the repository to keep it up-to-date. To sync your fork, from the directory of your local repository in a terminal window, you’ll have to use the // git fetch // command to fetch the branches along with their respective commits from the upstream repository. Since you used the shortname “upstream” to refer to the upstream repository, you’ll have to pass that to the command:
Switch to the local master branch of our repository:
Now merge any changes that were made in the original repository’s master branch, that you will access through your local upstream/master branch, with your local master branch:
At this point, you are ready to make a pull request to the original repository.
Navigate to your forked repository, and press the “New pull request” button on your left-hand side of your Repo page.
if (needHelp === true) {
var emailId = "2211nehakumari@gmail.com";
// email is the best way to reach out to me.
sendEmail(emailId);
}
Glad to see you here! Show some love by starring this repo.
if (isAwesome) {
// thanks in advance :p
starThisRepository();
}