Our open source community is focused on helping everyone get started with Open Source.
You can get your own fork/copy of Introduction-To-Open-Source by using the Fork button.
Now that you forked Introduction-To-Open-Source
repository, you need to clone (download) it to your local machine using
$ git clone https://github.com/Your_Username/Introduction-To-Open-Source.git
This makes a copy of repository on your local machine(simply saying, your PC).
Once you have cloned the Introduction-To-Open-Source
repository to your local machine, move to the folder created using change directory command on linux / Windows / Mac.
# This will change directory to a folder Introduction-To-Open-Source
$ cd Introduction-To-Open-Source
Move to this folder to perform all future commands.
Run the following commands to confirm that your local copy has a reference to your forked remote repository in Github
$ git remote -v
origin https://github.com/Your_Username/Introduction-To-Open-Source.git (fetch)
origin https://github.com/Your_Username/Introduction-To-Open-Source.git (push)
Now, lets add a reference to the original Introduction-To-Open-Source repository using
$ git remote add upstream https://github.com/HeroicHitesh/Introduction-To-Open-Source.git
This adds a new remote named upstream.
View the changes using
$ git remote -v
origin https://github.com/Your_Username/Introduction-To-Open-Source.git (fetch)
origin https://github.com/Your_Username/Introduction-To-Open-Source.git (push)
upstream https://github.com/HeroicHitesh/Introduction-To-Open-Source.git (fetch)
upstream https://github.com/HeroicHitesh/Introduction-To-Open-Source.git (push)
Always keep your local copy of repository updated with the original repository. Before making any changes and/or in an appropriate interval, run the following commands carefully to update your local repository.
# Fetch all remote repositories and delete any deleted remote branches
$ git fetch --all --prune
# Switch to `master` branch
$ git checkout master
# Reset local `master` branch to match `upstream` repository's `master` branch
$ git reset --hard upstream/master
# Push changes to your forked `Introduction-To-Open-Source` repo
$ git push origin master
Once you have completed above steps, you are ready to start contributing to open source by checking Issues with Help Wanted
tag and creating PRs.
Whenever you are going to make contribution. Please, create a new branch using following command and keep your master
branch clean (i.e. synced with remote branch).
# It will create a new branch with name Branch_Name and switch to branch Folder_Name
$ git checkout -b Folder_Name
Create a separate branch for contibution and try to use same name of branch as of folder.
To switch to desired branch
# To switch from one folder to other
$ git checkout Folder_Name
To add the changes to the branch. Use
# To add all files to branch Folder_Name
$ git add .
Type in a message relevant for the code reveiwer using
# This message get associated with all files you have changed
$ git commit -m 'relevant message'
Now, Push your awesome work to your remote repository using
# To push your work to your remote repository
$ git push -u origin Folder_Name
Finally, go to your repository in browser and click on compare and pull requests
.
Then add a title and description to your pull request that explains your precious effort.
We love to have articles
and codes
in different languages to improve
existing ones.
Please discuss it with us first by creating new issue.
🎉 ✨ 😄 Happy Contributing 😄 ✨ 🎉
For more details please refer this guide.