Development Docs Sharing
Create a new repository on the command line
touch README.md git init git add filename git commit -m "first commit" git remote add origin https://github.com/socialatwork/readpeer-android.git git push -u origin master
Push an existing repository from the command line
git remote add origin https://github.com/socialatwork/readpeer-android.git git push -u origin master
Pull from the server
git pull origin master git add . git commit -m "Your changes from local repo" git push origin master