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
Create a folder named your GITHUB_USERNAME
mkdir YOUR_USERNAME
Start Adding your solved problems files 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.
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.
-
When you are writing a solution to a problem try sticking to the same programming language for other solutions also.
-
Before making a valid pull request you should have pushed atleast 5 solutions to different problems from the Problem List add it into a single folder and then make pull request.
-
Your solution must be compiled and checked against the given test cases before making a pull request.