Skip to content

Latest commit

 

History

History
43 lines (32 loc) · 1.09 KB

README.md

File metadata and controls

43 lines (32 loc) · 1.09 KB

katie-and-drew-awesome-proj

A awesome project for Katie and Drew to learn git together

Resources

Lesson Plan

  1. Set up github.com user account, set up ssh user key, and be added to nomad-pals organization
  2. 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
  1. create a new branch using the command line
$ git branch katie-branch
$ git checkout katie-branch
  1. create a new file and add stuff to it!
  2. save changes and stage new file to git
$ git add file-name
$ git status
$ git commit -m "a clear message about what you did"
  1. push to remote
$ git push origin katie-branch