all-inkl & git
Ordner anlegen
mkdir REPONAME.git && cd REPONAME.git
git initialisieren
git --bare init
w0000000 ist der eurer Loginname für das KAS.
git clone ssh://ssh-w0000000@KASDOMAIN.de/www/htdocs/w0000000/git/REPONAME.git
First commit
git add .
git commit -a -m 'First commit'
git push -u origin master
Quelle: git und all-inkl
Allgemein
Create a new repository on the command line
touch README.md
git init
git add README.md
git commit -m "first commit"
git remote add origin https://github.com/USERNAME/XXX.git
git push -u origin master
Push an existing repository from the command line
git remote add origin https://github.com/USERNAME/XXX.git
git push -u origin master