GitTutorial
aus Metalab Wiki, dem offenen Zentrum für meta-disziplinäre Magier und technisch-kreative Enthusiasten.
Zur Navigation springenZur Suche springen
all that git needs and never is supplied by default
git config --global user.name "Your Name Comes Here" git config --global user.email you@yourdomain.example.com git config --global color.diff auto git config --global color.status auto git config --global color.branch auto
get update: pull
git pull
commit / push
git add file.rb git commit -m "commit message" git push
- commit updates your local repositry
- push writes it to the server (so other git users can check out aswell)
Git setup
- install git. osx installer
- ssh-keygen, put public key on your http://github.com account