Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ Now open **Contributors.md** file in a text editor, add your name to it. Don't a



**git status**
``**git status**``
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:
Expand All @@ -47,18 +47,18 @@ Add those changes to the branch you just created using the git add command:



**git add Contributors.md**
``**git add Contributors.md**``
Now commit those changes using the git commit command:


**git add .**
``**git add .**``
If you have done changes in multiple files. Else use the above command.





git commit -m "Added your-name to Contributors list"
``git commit -m "Added your-name to Contributors list"``
replacing your-name with your name.


Expand All @@ -71,7 +71,7 @@ Push your changes using the command git push:



**git push -u origin your-branch-name**
``**git push -u origin your-branch-name**``
replacing your-branch-name with the name of the branch you created earlier.


Expand Down