Skip to content

🤗Feel free to submit a PR💻 to have it merged and get a free Hacktoberfest tee👕 from Github🔮

License

Notifications You must be signed in to change notification settings

Prachimandavee/HacktoberFest2020-2

This branch is 361 commits behind sd2001/HacktoberFest2020:master.

Folders and files

NameName
Last commit message
Last commit date
Oct 1, 2020
Oct 1, 2020
Oct 1, 2020
Oct 1, 2020
Oct 1, 2020
Oct 1, 2020
Oct 2, 2020
Oct 1, 2020
Oct 1, 2020
Oct 1, 2020
Oct 1, 2020
Oct 1, 2020
Oct 1, 2020
Oct 1, 2020
Oct 1, 2020
Oct 1, 2020
Oct 1, 2020
Oct 1, 2020
Oct 1, 2020
Oct 1, 2020
Oct 1, 2020
Oct 1, 2020
Oct 1, 2020
Oct 1, 2020
Oct 1, 2020
Oct 1, 2020
Oct 1, 2020
Oct 1, 2020
Oct 1, 2020
Oct 1, 2020
Oct 1, 2020
Oct 1, 2020
Oct 1, 2020
Oct 1, 2020
Oct 1, 2020
Oct 1, 2020

Repository files navigation




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

  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💜!

About

🤗Feel free to submit a PR💻 to have it merged and get a free Hacktoberfest tee👕 from Github🔮

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Jupyter Notebook 96.6%
  • C++ 1.1%
  • Python 0.7%
  • Java 0.5%
  • JavaScript 0.5%
  • HTML 0.4%
  • Other 0.2%