How to upgrade Koha from git repository Εκτύπωση

  • 180

git config --global user.name "your NAME"
git config --global user.email "your@mail.com"

git config --global sendemail.smtpserver "smtp.address.com"
git config --global sendemail.smtpuser "login@email.addres.com"
git config --global sendemail.smtppass "password"
git config --global sendemail.smtpssl "true"

git config --global format.headers "Content-Type: text/plain; charset=\"utf-8\""

git clone git://git.koha.org/pub/scm/koha.git kohaclone

As soon as you checkout the source code with commands described above then update your existing installation with the following procedure:

cd /your path/kohaclone

git pull

If you are upgrading from a previous installation of Koha 3, you can
use the following:

 perl Makefile.PL --prev-install-log /path/to/koha-install-log
 make
 make test
 sudo make upgrade


Ήταν χρήσιμη αυτήν την απάντηση;

« Πίσω