08. Oktober 2015
Studiengang Medieninformatik an der Fachhochschule Köln
Campus Gummersbach
M.Sc. Jan Kus
Hands-on
git config
git init
git config
/ git clone
git status
/ git add
/ git commit
git push
/ git pull
Konfiguration von git auf dem lokalen Rechner. Somit wird ~/.gitconfig erstellt.
git config --global user.name "Your Name Here"
git config --global user.email "your_email@youremail.com"
Wie erstelle ich mir einen Github Account?
Bitte http://github.com
besuchen und wir gehen diese Schritte gemeinsam durch.
Wie erstelle ich ein Repository auf Github?
Bitte https://github.com/new
besuchen und wir gehen diese Schritte gemeinsam durch.
git init
mkdir testproject
cd testproject
git init .
git push
, git add
, git commit
, git remote
cd testproject
echo "# testproject" >> README.md
git add README.md
git commit -m "first commit"
git remote add origin git@github.com:[MEIN GITHUB USERNAME]/testproject.git
git push -u origin master
git clone
git clone git@github.com:koos/wba1-testproject1.git
git status
cd testproject
tocuh test
git status
git push
cd testproject
git add .
git commit -a -m "Added test file"
git push origin master
git pull
cd wba1-testproject1
git pull origin master
git help
Hilft.