All Projects → sd2001 → HacktoberFest2020

sd2001 / HacktoberFest2020

Licence: MIT license
🤗Feel free to submit a PR💻 to have it merged and get a free Hacktoberfest tee👕 from Github🔮. Updated as per new guidelines✔️

Programming Languages

Jupyter Notebook
11667 projects
python
139335 projects - #7 most used programming language
C++
36643 projects - #6 most used programming language
javascript
184084 projects - #8 most used programming language
c
50402 projects - #5 most used programming language
java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to HacktoberFest2020

hacktoberfest20
Participate in Hacktoberfest by contributing to any Open Source project on GitHub! Here is a starter project for first-time contributors. #hacktoberfest20. Don’t forget to read the README.md for guidance.
Stars: ✭ 18 (-18.18%)
Mutual labels:  digitalocean, pull-requests, hacktoberfest2020
hacktoberfest
Fork and Create a Pull Request
Stars: ✭ 13 (-40.91%)
Mutual labels:  digitalocean, pull-requests, hacktoberfest2020
J.A.R.V.I.S
Just A Rather Very Intelligent System
Stars: ✭ 36 (+63.64%)
Mutual labels:  digitalocean, hacktoberfest2020
hacktoberfest 2021
Solve the given questions, and submit a PR.💬 Make sure you submit the solution in the correct folder. ✔
Stars: ✭ 44 (+100%)
Mutual labels:  digitalocean, hacktoberfest2020
HacktoberFest-HelloWorld
All your PRs will be merged !! 😊
Stars: ✭ 24 (+9.09%)
Mutual labels:  digitalocean, pull-requests
hacktoberfest2021-easy
Add a code in any language
Stars: ✭ 24 (+9.09%)
Mutual labels:  digitalocean, hacktoberfest2020
hacktoberfest-2019
You can check the video here: #hacktoberfest
Stars: ✭ 28 (+27.27%)
Mutual labels:  digitalocean, pull-requests
competetive-code-hacktoberfest
For Hacktoberfest Contribution
Stars: ✭ 14 (-36.36%)
Mutual labels:  digitalocean, hacktoberfest2020
Hacktoberfest-Flutter
For all the Flutter developers out there make your first Pull Request and earn a free Tee from GitHub!
Stars: ✭ 89 (+304.55%)
Mutual labels:  digitalocean, pull-requests
BhimIntegers
BhimIntegers🚀 is a C++ library that is useful when we are dealing with BigIntegers💥💥. We can handle big integers (integers having a size bigger than the long long int data type) and we can perform arithmetic operations📘 like addition, multiplication, subtraction, division, equality check, etc📐📐. Also, there are several functions like factorial, …
Stars: ✭ 43 (+95.45%)
Mutual labels:  digitalocean, hacktoberfest2020
Hacktoberfest2020
Make your first Pull Request and earn a free tee from GitHub!
Stars: ✭ 1,141 (+5086.36%)
Mutual labels:  digitalocean, pull-requests
HacktoberFest-2020
Open source is changing the world. Join global community for the yearly celebration of open source software!
Stars: ✭ 21 (-4.55%)
Mutual labels:  pull-requests, hacktoberfest2020
first-pr-repo
A step by step guide to help people make their first Pull Request
Stars: ✭ 29 (+31.82%)
Mutual labels:  pull-requests, hacktoberfest2020
Hacktoberfest-2021
Make this Hacktoberfest a learning period and contribute to Great Open Source Projects.
Stars: ✭ 523 (+2277.27%)
Mutual labels:  pull-requests, hacktoberfest2020
Hacktoberfest
Hacktoberfest 2020 Beginner's Friendly Repository
Stars: ✭ 46 (+109.09%)
Mutual labels:  pull-requests, hacktoberfest2020
DSA
Write DSA Codes into it
Stars: ✭ 18 (-18.18%)
Mutual labels:  digitalocean, pull-requests
Programmers Community
This repository contains various solution of a problem in Ruby, C, C++, Python and Java.
Stars: ✭ 189 (+759.09%)
Mutual labels:  digitalocean, pull-requests
hacktoberfest
Contribute to this repo for your T-shirt, must be relevant that can add some value to this repo.
Stars: ✭ 33 (+50%)
Mutual labels:  digitalocean, pull-requests
data-structures-algorithms-interviews
👨‍💻 Repo contains my solutions to coding interview problems on various platforms. Will later convert into a React based web app for personal revision.
Stars: ✭ 16 (-27.27%)
Mutual labels:  hacktoberfest2020
synchly
Automate database backups with customizable recurring schedules.
Stars: ✭ 27 (+22.73%)
Mutual labels:  hacktoberfest2020




😄To make a Pull Request, follow the steps⬇️:

Readme Pushes won't be merged. Try pushing a genuine file and not destroy the essence of this prestigious event.

  1. Go to the top right corner of this page and click on the Fork Button.This creates a new copy of my demo repo under your GitHub user account with a URL like:
https://github.com/<YourUserName>/HacktoberFest2020
  1. Go to any folder, open terminal and type:
git clone https://github.com/<YourUserName>/HacktoberFest2020
  1. Once the repo is cloned, navigate to the Hacktoberfest2020 folder and you need to do two things:

    • Create a new branch by issuing the command:
    git checkout -b new_branch_name
    
    • Create a new remote for the upstream repo with the command:
    git remote add upstream https://github.com/sd2001/HacktoberFest2020
    

In this case, "upstream repo" refers to the original repo you created your fork from.

Now you can make changes to the code. The following code creates a new branch, makes an arbitrary change, and pushes it to new_branch:

  1. Once you add all the files in your branch, it time to push your code for generating a pull request.

    git status
    

    This checks whether you are on your created branch or the master branch. If it shows master, type:

    git checkout <Your Branch Name>
    

    Now its time for the Git operations. Always git pull to ensure that your files are updated.

    git pull origin master
    
    git add .
    
    git commit -m "Your Message"
    
    git push -u origin <Your Branch Name>
    

  1. Once you push the changes to your repo, the Compare & pull request button will appear in GitHub.

  1. Click it and you'll be taken to this screen:

  1. Open a pull request by clicking the Create pull request button. This allows the repo's maintainers to review your contribution. From here, they can merge it if it is good, or they may ask you to make some changes.

Woo-Hooo🎉, You have made a PR to this repo🥳!

Thank You💜!

 

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].