Fork/Copy the repo by clicking the right most button on top of the page.
Go to your own repository list and find the forked repository.
Clone the repo:
git clone https://github.com/GITHUB_USERNAME/Hacktoberfest_2021
In your local repository, run script/setup, move to the folder of the root directory
cd Hacktoberfest_2021/YOUR_CODE_LANGUAGE
Start Adding your solved problems files or DSA codes or anything useful into the directory.
Make a Commit to the added files
git add .
git commit -m "added all solution files/ANY_MESSAGE"
Push the Changes to your own forked repository:
git push origin main
Now go to the Github Website and switch to the forked repository.
Click on preview and make pull request. A pull request is being made to the original Repository.
Once the Pull Request is made we will verify your solutions and merge the Pull Requests. With this you make your first valid pull Request. Don't forget to add your details in CONTRIBUTING.md
to get featured!
Wahoo!!!....
-
Always use a valid github Username for naming the folder that would contain your solutions.
-
There is no restrictions over language you are using to code the solution You can use any valid commonly used Programming languages. If there is no folder for your programming language feel free to create one.
-
When you are writing a solution to a problem stick to the same programming language as the folder it is created under. You can submit solutions in other programming languages too but please do it under the respective language folder
-
Your solution must be a working one.
-
Please use standard headers and modules as in official documentation.