Skip to content
This repository was archived by the owner on Apr 2, 2026. It is now read-only.

Latest commit

 

History

History
17 lines (16 loc) · 422 Bytes

File metadata and controls

17 lines (16 loc) · 422 Bytes

Brand New

  1. mkdir dirname
  2. git init - for brand new projects
  3. Create files
  4. git add . - adds all changes from current directory
  5. git commit -m "message goes here"
  6. Go to github and create repo.
  7. Grab Repo git@url
  8. git remote add origin <git@url>
  9. git push origin master

Changes

  1. Make changes
  2. git add .
  3. git commit -m "commit message"
  4. git push origin master
  5. rinse and repeat