. It is an Open Source Repo for students/young programmers who are absolute begineers in programming and want to learn it. This repository will contain Some usefull Algorithms and Codes to help beginners.Consists of Different Languages codes.
Languages You Will Found:
-HTML
-CSS
-JAVASCRIPT
-PHP
-PYTHON
-C++
-C#
-JAVA
You can also find
-Mini Projects
- You can contribute with Code.
- Fixing issues.
- You can contribute in terms of usefull tips and tricks of programming or add documentations.
Star and Fork this repository
You can fork this repository by clicking on fork button on top right corner. Once you fork this will create a copy of repo on your account
To clone the repository go to your account open this repo and either click on clone button or run the command below to get this repository on your local machine
git clone <copied URL>
e.g. git clone https://github.com/DevAffan/contribution.git
Go inside of your folder where you clone the repository and run these commands.
create a new branch using below command.
git checkout -b <branch-name>
e.g. git checkout -b mybranch
Make changes to files on your local machine or add some code.
use the following commands
git add .
Now we have to commit changes, commit message should always be clear, to commit use command below.
git commit -m "resolved the <issue>"
Now push the changes to your branch.
git push origin <branch-name>
name of branch is same as you created in step 4
e.g git push origin mybranch
Once you have pushed your code to GitHub, it's now time to create pull request, you will go to the repository click on compare and pull request and submit the pull request.
Soon, we will be merging all your pull requests to the main branch of project.
Happy Hacking