Git

Aus Vosp.info
Wechseln zu:Navigation, Suche

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


Quellen