We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9a24570 + bc20713 commit 91ff0c5Copy full SHA for 91ff0c5
1 file changed
version-control/command-line/tutorial.md
@@ -196,7 +196,7 @@ $ git diff
196
The -/+ indications you can see mean
197
198
**-** indicates lines removed from the code.
199
-
+
200
**+** indicates lines added to the code.
201
202
```bash
@@ -220,6 +220,7 @@ index 21f15d1..c2031f1 100644
220
### After you verify your change, commit and push them
221
222
223
+$ git add .
224
$ git commit -m 'Added git status description'
225
$ git push origin master
226
```
@@ -229,7 +230,7 @@ $ git push origin master
229
230
Edit the index.html file and then check the changes.
231
232
-$ echo "oh no!" > index.html
233
+$ echo 'oh no!' > index.html
234
235
236
> Have a look at changes to the file using `git diff`
0 commit comments