Git
Aus Vosp.info
Version vom 15. Februar 2013, 16:29 Uhr von F (Diskussion | Beiträge)
Inhaltsverzeichnis
repository anlegen
mkdir neurepository.git cd neurepository.git git --bare init
repository holen
git clone git+ssh://user@1.2.3.4:22/var/www/git/neurepository.git
echo README > README git add README git commit -a -m 'README' git push origin master # muss auf jeden Fall beim leeren bare Repository gemacht werden
Fehlermeldungen
error: insufficient permission for adding an object to repository database ./objects
git push origin master
error: insufficient permission for adding an object to repository database ./objects fatal: failed to write object error: unpack failed: unpack-objects abnormal exit
notizen
echo README > README git add README git commit -a -m 'README' git log git branch