Project,Java,Python,C,C++,HTML,CSS,Web Development,Data Structure & Algorithm,Full Stack Development
Coder2hacker platform will provide guidance to beginner developers and make them understand the benefits of using and exploring open source programs and platforms. The aim of this repo is to make a complete beginner make his/her first contribution and get acquainted with the processes involved throughout their journey in the world of open source.
- Fork this repo and click on star.
- Clone the repo
git clone <YOUR_FORKED_REPO_URL>
- CD into the specific directory. Create a new branch of the master
git branch <NEW_BRANCH_NAME>
- You can check which branch you are in using
git branch
. Now checkout to the new branch created.git checkout <BRANCH_NAME>
- Create a new file named
<YOUR_GITHUB_USERNAME>.json
and create content as shown in sample here. - Stage the changes by using the command
git add .
. - Commit the changes made by you using the command
git commit -m "<YOUR_MESSAGE>"
. Give an appropriate message explaining the changes you made. - Push the changes using
git push
- After you push the changes head over to the forked repo and a
Compare & pull request
button will appear. - Click on that button and you will be taken to a page where you can create a pull request. After you have submitted the PR, we will review your work and approve the PR and merge it with the master branch.
PS: If anyone wants to contribute in my projects, you guys are welcomed You can select any repository, I will accept all appropriate changes.