GitHub Making Changes

There are a bunch of necessary steps to get your changes tracked and merged.

Secret
  1. ADD
  2. COMMIT
  3. PUSH
  4. Another Secret
    1. ADD
    2. COMMIT
    3. PUSH

    These steps are REQUIREDDD


  1. git add filestotrack
    • This command is used to add your files to be tracked by Git.
    • For filestotrack, I would usually use . or *
    • For our purposes, use git add *. This adds all files in your working directory.
    • Result using git add then git status
  2. git commit -m "your message in between quotes"
  3. git push origin branchname