Skip to content

Commit d7cd53e

Browse files
committed
Removed --all option from git add
1 parent be2f0b0 commit d7cd53e

File tree

5 files changed

+5
-7
lines changed

5 files changed

+5
-7
lines changed

en/deploy/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ And finally we save our changes. Go to your console and run these commands:
104104

105105
{% filename %}command-line{% endfilename %}
106106
```
107-
$ git add --all .
107+
$ git add .
108108
$ git commit -m "My Django Girls app, first commit"
109109
[...]
110110
13 files changed, 200 insertions(+)

en/django_forms/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -405,7 +405,7 @@ Let's see if all this works on PythonAnywhere. Time for another deploy!
405405
{% filename %}command-line{% endfilename %}
406406
```
407407
$ git status
408-
$ git add --all .
408+
$ git add .
409409
$ git status
410410
$ git commit -m "Added views to create/edit blog post inside the site."
411411
$ git push

en/django_templates/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ It'd be good to see if your website will still be working on the public Internet
7777
```
7878
$ git status
7979
[...]
80-
$ git add --all .
80+
$ git add .
8181
$ git status
8282
[...]
8383
$ git commit -m "Modified templates to display posts from database."

en/extend_your_application/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ It'd be good to see if your website still works on PythonAnywhere, right? Let's
172172
{% filename %}command-line{% endfilename %}
173173
```
174174
$ git status
175-
$ git add --all .
175+
$ git add .
176176
$ git status
177177
$ git commit -m "Added view and template for detailed blog post as well as CSS for the site."
178178
$ git push

en/html/README.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -167,11 +167,9 @@ Make sure you're in the `djangogirls` directory and let's tell `git` to include
167167

168168
{% filename %}command-line{% endfilename %}
169169
```
170-
$ git add --all .
170+
$ git add .
171171
```
172172

173-
> __Note__ `--all` means that `git` will also recognize if you've deleted files (by default, it only recognizes new/modified files). Also remember (from chapter 3) that `.` means the current directory.
174-
175173
Before we upload all the files, let's check what `git` will be uploading (all the files that `git` will upload should now appear in green):
176174

177175
{% filename %}command-line{% endfilename %}

0 commit comments

Comments
 (0)