Versions Compared

Key

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

...

Wiki Markup
{{git add \[file\]}}
This tells git that the file(s) will be marked as managed by git.  You'll need to do this on files you just modify, also.

Wiki Markup
{{git commit \[file\]}}
Commit your changes locally.

...

git push is the command that changes the state of the remote code branch. Nothing you do locally will have any affect outside your workstation until you push your changes.

{git pull}} is the command that brings your current local branch up-to-date with the state of the remote branch on github. Use this command when you want to make sure your local branch is all caught up with changes push'ed to the remote branch.

...