-
Every file should first state the purpose of the program at the Top (before the code). For example : If you're creating a program to print the prime numbers in a range, then you should mention that at the beginning of the file by commenting it out.
-
Don't add too basic programs like addition of two numbers or hello world.
-
Follow the above set pattern while making PRs otherwise it won't be merged.
git clone https:/github.com/<username>/<repository>.git
git checkout -b [branch name]
git commit -m "<Add your Commit Message here>"
git push origin [branch name]
Get to your repository and click on the green button that says Compare and Pull. Then open the Pull request and wait for it to get reviewed.