Skip to content

DevAffan/AffiCodes-Hacktoberfest2023

Repository files navigation

AffiCodes

This is an open-source repository designed for students and young programmers who are absolute beginners in programming and eager to learn. The repository includes a collection of useful algorithms and code samples aimed at assisting beginners. It covers a variety of programming languages.

Begin your journey of contributing here

Languages You Will Found:
-HTML
-CSS
-JAVASCRIPT
-PHP
-PYTHON
-C++
-C#
-JAVA

You can also find
-Mini Projects

How to contribute

  1. You can contribute with Code.
  2. Fixing issues.
  3. You can contribute in terms of usefull tips and tricks of programming or add documentations.

Steps.

Step 1

Starred and Fork this repository

step 2 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

step 3 Clone the repository

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

step 4 Create a branch

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

step 5 Lets make some contributions

Make changes to files on your local machine or add some code.

step 6 Add Changes and Commit Changes

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>"

step 7 Push changes to GitHub

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

step 8 Submit your changes for review

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.

TOP CONTRIBUTORS

Happy Hacking