Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.


Info
titleCheat sheet

github-git-cheat-sheet.pdf

...

Git add does more than add files to the local repository, to moves modified from modified state to the staged state, once in the staged state, they still need to be committed using git commit.  If you are sure the commit is definite, the execute a git push to push the committed changes up to git.

Git add staging

Git commit

Takes the staged snapshot and commits it to the project history. 

Git commitImage Added

Working with stuff that's NOT on a local computer

...