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 6fcbbc3 + 1744502 commit ac8050bCopy full SHA for ac8050b
book/03-git-branching/sections/remote-branches.asc
@@ -201,7 +201,12 @@ Finally we can see that our `testing` branch is not tracking any remote branch.
201
It's important to note that these numbers are only since the last time you fetched from each server.
202
This command does not reach out to the servers, it's telling you about what it has cached from these servers locally.
203
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`
+You could do that like this:
205
+
206
+[source,console]
207
+----
208
+$ git fetch --all; git branch -vv
209
210
211
==== Pulling
212
0 commit comments