Versions Compared

Key

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

...

Changes to the cloned project on the local machine can be pushed to your cloned repository on Github

Code Block
$ git status
# Show files or folders to commit
$ git add [specify new file(s) to be committed]
$ git commit -m "comment"
$ git push
# Pushes commits to your remote repository stored on GitHub

...