https://github.com/workdone0/first-contribution-github
🚀✨ A beginner guide on how to contribute to open source projects.
https://github.com/workdone0/first-contribution-github
git gitcommands github hacktoberfest hactoberfest2020 open-source
Last synced: 2 months ago
JSON representation
🚀✨ A beginner guide on how to contribute to open source projects.
- Host: GitHub
- URL: https://github.com/workdone0/first-contribution-github
- Owner: workdone0
- Created: 2020-09-29T13:18:18.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2025-04-02T14:16:32.000Z (12 months ago)
- Last Synced: 2025-12-27T01:42:10.265Z (3 months ago)
- Topics: git, gitcommands, github, hacktoberfest, hactoberfest2020, open-source
- Homepage:
- Size: 291 KB
- Stars: 0
- Watchers: 1
- Forks: 15
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# First Contributions
It's always hard to get started. So we wanted to simplify the way students learn about git and github.
This project aims at providing guidance & simplifying the way beginners make their first contribution. If you are looking to make your first contribution, follow the steps below.
#### If you're not comfortable with command line, you can find tutorials on how to use the GUI tool but we recommend using the command line interface(cli).
If you don't have git on your machine, [install it]( https://help.github.com/articles/set-up-git/).
## Fork this repository
Fork this repository by clicking on the fork button on the top of this page.
This will create a copy of this repository in your account.
## Clone the repository
Now clone the forked repository to your machine. Go to your GitHub account, open the forked repository, click on the clone button and then click the *copy to clipboard* icon.
Open a terminal and run the following git command:
```
git clone "url you just copied"
```
where "url you just copied" (without the quotation marks) is the url to this repository (your fork of this project). See the previous steps to obtain the url.
For example:
```
git clone https://github.com/your-user-name/first-contribution-github.git
```
where `your-user-name` is your GitHub username. Here you're copying the contents of the first-contributions repository on GitHub to your computer.

## Create a branch
Change to the repository directory on your computer (if you are not already there):
```
cd first-contribution-github
```
Now create a branch using the `git checkout` command:
```
git checkout -b
```
For example:
```
git checkout -b t-bugfix
```
(The name of the branch can be anything you want but it is recommended to use a name that explains the purpose of the branch.)
## Make necessary changes and commit those changes
Now open `Contributors.md` file in a text editor, add your name to it. Don't add it at the beginning. Put it anywhere below the heading. Now, save the file.

If you go to the project directory and execute the command `git status`, you'll see there are changes.
Add those changes to the branch you just created using the `git add` command:
```
git add Contributors.md just to add Contributors.md to staging or you can use git add . to stage all the changes.
```
Now commit those changes using the `git commit` command:
```
git commit -m "Add to Contributors list"
```
replacing `` with your name.
## Push changes to GitHub
Push your changes using the command `git push`:
```
git push origin
```
replacing `` with the name of the branch you created earlier.
## Submit your changes for review
If you go to your repository on GitHub, you'll see a `Compare & pull request` button. Click on that button.

Now submit the pull request.

Soon we'll be merging all your changes into the master branch of this project. You will get a notification email once the changes have been merged.
## Where to go from here?
Congrats! You just completed the standard github workflow that you'll often encounter as a contributor!
You can follow this link to find more beginner friendly projects to contribute, [List of projects]( https://github.com/MunGell/awesome-for-beginners ).