##Setup To start working with Chaw, you need to have ssh access setup. This guide is still a work in progress. ###ssh access first start by setting up your own public/private key pair set. This can use either dsa or rsa, so basically any key you setup will work. On most systems you can use ssh-keygen. But first you want to make sure you are cd into your .ssh directory. Open up the terminal and run ```cd ...
##The First Push Once you have a project created you will need to make your first push. 1. change into your the directory that will be the root of your project - ```cd /htdocs/app``` 2. initialize the project - ```git init``` 3. add chaw as a remote repository - ```git remote add chaw git@thechaw.com:your_project.git``` 4. [Optional] setup your .gitignore to ignore certain directories or fi...