Skip to content
Snippets Groups Projects
Commit 0726be2a authored by Thomas Ferris Nicolaisen's avatar Thomas Ferris Nicolaisen
Browse files

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
parent 161df8ce
No related branches found
No related tags found
No related merge requests found
...@@ -56,8 +56,9 @@ Let's say you want to version control your `vim` configuration: ...@@ -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' vcsh vim commit -m 'Initial commit of my Vim configuration'
# optionally push your files to a remote # optionally push your files to a remote
vcsh vim remote add origin <remote> vcsh vim remote add origin <remote>
vcsh vim push origin master:master vcsh vim push -u origin master
vcsh vim branch --track master 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 If all that looks a _lot_ like standard `git`, that's no coincidence; it's
a design feature. a design feature.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment