Umstellung der django-apps auf gitea gestartet:
Dazu in /home/django/.bashrc:
eval `ssh-agent -s`
ssh-add /home/django/.ssh/id_rsa
Dann (wahrscheinlich) eine erste PW-Eingabe bei `fab csr`
Was war denn da los
2018-12-25 09:50 (2018-12-25 09:50)
Umstellung der django-apps auf gitea gestartet:
Dazu in /home/django/.bashrc:
eval `ssh-agent -s`
ssh-add /home/django/.ssh/id_rsa
Dann (wahrscheinlich) eine erste PW-Eingabe bei `fab csr`
2018-11-16 23:34 (2018-11-16 23:34)
on docker, not quite easy.
2018-09-17 20:48 (2018-09-17 20:48)
Auf rhea
testweise http2
installiert, das geht mit neuem/aktuellen nginx (https://launchpad.net/~ondrej/+archive/ubuntu/nginx) und TLS-Verschlüsselung.
Schneller bei Helma, kein Zuwachs bei Django (vermutlich).
2018-09-17 19:33 (2018-09-17 19:33)
Auf rhea das nützliche Programm etckeeper
installiert, das Änderungen in /etc
mitprotokolliert und in ein git
-Repo schreibt. (vgl. c’t 20/2018, S.166ff)
2018-05-23 14:23 (2018-05-23 14:23)
how to clone a git-flow repo:
$ git checkout master
$ git checkout develop
$ git branch -a
* develop
master
remotes/origin/HEAD -> origin/develop
remotes/origin/develop
remotes/origin/master
Now run git flow init as normal:
$ git flow init
Or we can convert an existing repo:
$ git checkout master
$ git checkout -b develop
$ git push origin develop