Try : instead of #+BEGIN_EXAMPLE

It might be parsed better by some parsers, let's see.
This commit is contained in:
Tom Willemsen 2013-01-20 13:24:48 +01:00
parent 09ace1bc4b
commit c688bfb73e

View file

@ -12,16 +12,12 @@
Installing ~gitto~ is not really necessary, but it *is* more
convenient. In order to install it just run:
#+BEGIN_EXAMPLE
make install
#+END_EXAMPLE
: make install
This will install ~gitto~ to ~/usr/local/~, if you would like it
somewhere else you could use the ~DESTDIR~ variable:
#+BEGIN_EXAMPLE
make install DESTDIR=/some/other/place
#+END_EXAMPLE
: make install DESTDIR=/some/other/place
This will install ~gitto~ to ~/some/other/place/~.
@ -30,17 +26,13 @@
If you're fed up with ~gitto~ and want it gone, and I do mean *now*,
you can run:
#+BEGIN_EXAMPLE
make uninstall
#+END_EXAMPLE
: make uninstall
This will remove any ~gitto~ installed files from ~/usr/local/~, if you
used the ~DESTDIR~ variable during installation, you should give it
the same value here, like:
#+BEGIN_EXAMPLE
make uninstall DESTDIR=/some/other/place
#+END_EXAMPLE
: make uninstall DESTDIR=/some/other/place
This will remove any ~gitto~ installed files from ~/some/other/place/~.
@ -48,34 +40,26 @@
Usage is, hopefully, simple, first you have to register some repos:
#+BEGIN_EXAMPLE
$ gitto -r ~/projects/project1
$ gitto -r ~/projects/project2
$ gitto -r ~/projects/project3
#+END_EXAMPLE
: $ gitto -r ~/projects/project1
: $ gitto -r ~/projects/project2
: $ gitto -r ~/projects/project3
Then you can call ~gitto~ without any argument to see a list of your
repos and their statuses:
#+BEGIN_EXAMPLE
$ gitto
project1: 0 to push, 0 to pull and is dirty
project2: 5 to push, 2 to pull and is not dirty
project3: 0 to push, 1 to pull and is not dirty
#+END_EXAMPLE
: $ gitto
: project1: 0 to push, 0 to pull and is dirty
: project2: 5 to push, 2 to pull and is not dirty
: project3: 0 to push, 1 to pull and is not dirty
If you're done with one of your projects and no longer wish to
track their status you can unregister them:
#+BEGIN_EXAMPLE
$ gitto -R ~/projects/project1
#+END_EXAMPLE
: $ gitto -R ~/projects/project1
If you require further assistance:
#+BEGIN_EXAMPLE
$ gitto -h
#+END_EXAMPLE
: $ gitto -h
*** run-gitto