KOHA
Instalacija i nadogradnja: Revision 1

Instalacija i nadogradnja

u /srv/koha direktoriju

$ git pull
$ perl Makefile.PL
$ make
$ make test
$ sudo make install
$ git log

Git

Korisne komadne za provjeriti što će se komitati:

$ git diff --cached # difference between HEAD and the index; what
                    # would be committed if you ran "commit" now.
$ git diff          # difference between the index file and your
                    # working directory; changes that would not
                    # be included if you ran "commit" now.
$ git diff HEAD     # difference between HEAD and working tree; what
                    # would be committed if you ran "commit -a" now.
$ git status        # a brief per-file summary of the above.