Skip to content

Commit ac8050b

Browse files
authored
Merge pull request #620 from Fornost461/patch-2
linebreak deletion
2 parents 6fcbbc3 + 1744502 commit ac8050b

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

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

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,12 @@ 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+
206+
[source,console]
207+
----
208+
$ git fetch --all; git branch -vv
209+
----
205210

206211
==== Pulling
207212

0 commit comments

Comments
 (0)