#This is the repository for the september ruby class. ##Git Work Flow:
- Fork the repository to your own github account.(Do this online)
- Clone your repository. (Git clone )
- Add the master repository as a remote with a new origin(git remote add master-repo https://github.com/nguyenhmp/ruby-september-2016) You now have 2 remote addresses(origin and master-repo). Origin is connected to the repo on your github account and master-repo is connected to nguyenhmp repository. You can pull changes of other people by: git pull master-repo master.
- Work on your assignments.
- Add files to your repository: git add -A
- Commit your work git commit -m ""
- Push to your repository: git put origin master
- Make a pull request on nguyenhmp github!
#Always remember: ##Commit to the master!