Git Cookbook

Installing

Hosting

Using

Snippets

Create a repository

git init
git add -A
git commit -m "First release"

Synchronize with a remote server

git remote add origin git@remote.server.com:test.git
git push origin master

Cloning