Getting started
Contribute to DSA101
Getting Started
-
Fork this repository to get started with contributing.
-
Clone the forked repository to your local machine
git clone -b main https://www.github.com/<YOUR-USER-NAME>/DSA101.git
- 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>
- Add your solutions to the most suitable folder and commit it.
- Send a
pull request and we will merge it in main branch.
Contribute to DSA101 Docs
Getting Started
-
Fork this repository to get started with contributing.
-
Clone the forked repository to your local machine
git clone -b docs https://www.github.com/<YOUR-USER-NAME>/DSA101.git
- 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>
- Make your changes to the docs in your branch and commit it.
- Send a
pull request and we will merge it in docs branch.