Banseedhar01 / Hackt0berfest

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Hackt0berfest

Add your project folder in here.

Still could'nt find a repo to begin your opensource journey?
Don't worry here is the repo for your first PR. Add your Competitive Coding Solution
Or any Projects, ALL are welcome!!

Guidelines for Contribution

  • Add your projects in project folder
  • Add your CP solution in CP folder

    Caution!

    This repository is only for begineers, if you have been contributing in open source or you are not a begineer then stay away from this, otherwise your PR will be marked as 'SPAM'.

    Happy Coding!!!

    How to contribute?

    Information is taken from firstcontributions repository.

    This project aims to simplify and guide the way beginners make their first contribution. If you are looking to make your first contribution, follow the steps below.

    fork this repository

    Fork this repository

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

    Clone the repository

    clone this 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 "url you just copied"
    

    where "url you just copied" (without the quotation marks) is the url to this repository (your fork of this project). See the previous steps to obtain the url.

    copy URL to clipboard

    For example:

    git clone https://github.com/neelbavarva/Hackt0berfest.git
    

    where this-is-you is your GitHub username. Here you're copying the contents of the first-contributions repository on GitHub to your computer.

    Create a branch

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

    cd first-contributions
    

    Now create a branch using the git checkout command:

    git checkout -b your-new-branch-name
    

    For example:

    git checkout -b add-alonzo-church
    

    (The name of the branch does not need to have the word add in it, but it's a reasonable thing to include because the purpose of this branch is to add your name to a list.)

    Make necessary changes and commit those changes

    git status

    If you go to the project directory and execute the command git status, you'll see there are changes.

    Add those changes to the branch you just created using the git add command:

    git add Contributors.md
    

    Now commit those changes using the git commit command:

    git commit -m "Your commit message"
    

    Push changes to GitHub

    Push your changes using the command git push:

    git push origin <add-your-branch-name>
    

    replacing <add-your-branch-name> with the name of the branch you created earlier.

    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.

    create a pull request

    Now submit the pull request.

    submit pull request

    Soon I'll be merging all your changes into the master branch of this project. You will get a notification email once the changes have been merged.

  • About


    Languages

    Language:PHP 60.7%Language:Python 13.8%Language:C++ 6.8%Language:JavaScript 5.5%Language:C 3.6%Language:EJS 3.4%Language:Jupyter Notebook 2.3%Language:CSS 1.5%Language:HTML 1.3%Language:Java 0.7%Language:Hack 0.3%