Link Search Menu Expand Document

Getting started


Contribute to DSA101

Getting Started

  1. Fork this repository to get started with contributing.

  2. Clone the forked repository to your local machine

    git clone -b main https://www.github.com/<YOUR-USER-NAME>/DSA101.git
    
  3. Open the repository directory and create a new branch with your username
     git branch <YOUR-USER-NAME>
    

    Check whether your branch has been created and listed

    git branch
    

    Switch to your branch

    git checkout <YOUR-BRANCH-NAME>
    
  4. Add your solutions to the most suitable folder and commit it.
  5. Send a pull request and we will merge it in main branch.

Contribute to DSA101 Docs

Getting Started

  1. Fork this repository to get started with contributing.

  2. Clone the forked repository to your local machine

    git clone -b docs https://www.github.com/<YOUR-USER-NAME>/DSA101.git
    
  3. Open the repository directory and create a new branch with your username
     git branch docs/<YOUR-USER-NAME>
    

    Check whether your branch has been created and listed

    git branch
    

    Switch to your branch

    git checkout docs/<YOUR-BRANCH-NAME>
    
  4. Make your changes to the docs in your branch and commit it.
  5. Send a pull request and we will merge it in docs branch.

See also: