Skip to content

Commit 768688e

Browse files
authored
Update README.md
1 parent ad44f86 commit 768688e

File tree

1 file changed

+0
-48
lines changed

1 file changed

+0
-48
lines changed

README.md

Lines changed: 0 additions & 48 deletions
Original file line numberDiff line numberDiff line change
@@ -60,51 +60,3 @@ git checkout -b add-alan-mathew
6060
```
6161

6262
(The name of the branch does not need to have the word _add_ in it, but it's a reasonable thing to include because the purpose of this branch is to add your name to a list.)
63-
64-
## Make necessary changes and commit those changes
65-
66-
Now open `Contributors.md` file in a text editor, add your name to it. Don't add it at the beginning or end of the file. Put it anywhere in between. Now, save the file.
67-
68-
<img align="right" width="450" src="https://github.com/firstcontributions/first-contributions/blob/master/assets/git-status.png" alt="git status" />
69-
70-
If you go to the project directory and execute the command `git status`, you'll see there are changes.
71-
72-
Add those changes to the branch you just created using the `git add` command:
73-
74-
```
75-
git add Contributors.md
76-
```
77-
78-
Now commit those changes using the `git commit` command:
79-
80-
```
81-
git commit -m "Add <your-name> to Contributors list"
82-
```
83-
84-
replacing `<your-name>` with your name.
85-
86-
## Push changes to GitHub
87-
88-
Push your changes using the command `git push`:
89-
90-
```
91-
git push origin <add-your-branch-name>
92-
```
93-
94-
replacing `<add-your-branch-name>` with the name of the branch you created earlier.
95-
96-
## Submit your changes for review
97-
98-
If you go to your repository on GitHub, you'll see a `Compare & pull request` button. Click on that button.
99-
100-
<img style="float: right;" src="https://github.com/rubenshibu/css-components/blob/contributors/images/Create_pull_request.jpg" alt="create a pull request" />
101-
102-
Now submit the pull request.
103-
<img style="float: right;" src="https://github.com/rubenshibu/css-components/blob/contributors/images/Submit_PR.jpeg" alt="submit pull request" />
104-
105-
Soon I'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.
106-
107-
## Where to go from here?
108-
109-
Congrats!!:tada:
110-
You just completed the standard _fork -> clone -> edit -> pull request_ workflow that you'll encounter often as a contributor!

0 commit comments

Comments
 (0)