KOHA
Instalacija i nadogradnja: Revision 4

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.

Nakon nadogradnje na produkciji

  • editirati SIPconfig.xml - u tagu service dodati odgovarajuću IP adresu
  • restore LDAP setinga

How to Reset the Koha 3 Database

http://wiki.koha.org/doku.php?id=resetdatabasekoha3