Skip to content

Commit 88c1376

Browse files
Fornost461Fornost461
authored andcommitted
Update remote-branches.asc
In the PDF, page 113, a linebreak is inserted after the dashes within the option “--all”, which makes ambiguous whether a space should be inserted or not.
1 parent e95aba0 commit 88c1376

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

book/03-git-branching/sections/remote-branches.asc

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,11 @@ Finally we can see that our `testing` branch is not tracking any remote branch.
201201
It's important to note that these numbers are only since the last time you fetched from each server.
202202
This command does not reach out to the servers, it's telling you about what it has cached from these servers locally.
203203
If you want totally up to date ahead and behind numbers, you'll need to fetch from all your remotes right before running this.
204-
You could do that like this: `git fetch --all; git branch -vv`
204+
You could do that like this:
205+
[source,console]
206+
----
207+
$ git fetch --all; git branch -vv
208+
----
205209

206210
==== Pulling
207211

0 commit comments

Comments
 (0)