From: Thomas Ferris Nicolaisen Date: Sat, 15 Jun 2013 21:50:15 +0000 (+0200) Subject: Simplify example setup X-Git-Url: https://git.madduck.net/code/vcsh.git/commitdiff_plain/0726be2a782800e6a3b2234054e16e1addf8ca57 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 --- 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 - 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.