A awesome project for Katie and Drew to learn git together
- Set up github.com user account, set up ssh user key, and be added to nomad-pals organization
- clone this repository using the command line.
$ git clone git@github.com:Nomad-Pals/katie-and-drew-awesome-proj.git
$ cd katie-and-drew-awesome-proj
- create a new branch using the command line
$ git branch katie-branch
$ git checkout katie-branch
- create a new file and add stuff to it!
- save changes and stage new file to git
$ git add file-name
$ git status
$ git commit -m "a clear message about what you did"
- push to remote
$ git push origin katie-branch