Try : instead of #+BEGIN_EXAMPLE
It might be parsed better by some parsers, let's see.
This commit is contained in:
parent
09ace1bc4b
commit
c688bfb73e
1 changed files with 13 additions and 29 deletions
42
README.org
42
README.org
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue