From 26138f0f107f26eacbc252985369c624fd5af6f2 Mon Sep 17 00:00:00 2001 From: Artem Buslov Date: Fri, 29 Dec 2017 17:52:07 +0300 Subject: [PATCH] Fixed typo in `git branch -rr` invocation (#190) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1472787..9a6819e 100644 --- a/README.md +++ b/README.md @@ -822,7 +822,7 @@ $ git branch -u [remotename]/[branch] [local-branch] By checking your remote branches, you can see which remote branch your HEAD is tracking. In some cases, this is not the desired branch. ```sh -$ git branch -rr +$ git branch -r origin/HEAD -> origin/gh-pages origin/master ```