From 0726be2a782800e6a3b2234054e16e1addf8ca57 Mon Sep 17 00:00:00 2001
From: Thomas Ferris Nicolaisen <tfnico@gmail.com>
Date: Sat, 15 Jun 2013 23:50:15 +0200
Subject: [PATCH] Simplify example setup

Git supports the push -u flag since a while now,
and it's nice to show the user that afterwards
one can push without arguments
---
 README.md | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/README.md b/README.md
index 68031ff..011b41a 100644
--- a/README.md
+++ b/README.md
@@ -56,8 +56,9 @@ Let's say you want to version control your `vim` configuration:
     vcsh vim commit -m 'Initial commit of my Vim configuration'
     # optionally push your files to a remote
     vcsh vim remote add origin <remote>
-    vcsh vim push origin master:master
-    vcsh vim branch --track master origin/master
+    vcsh vim push -u origin master
+    # from now on you can push additional commits like this
+    vcsh vim push
 
 If all that looks a _lot_ like standard `git`, that's no coincidence; it's
 a design feature.
-- 
GitLab