Versions Compared

Key

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

...

Now, start creating, editing files, testing. When you're ready to commit your changes:

Wiki Markup
{{git add
file
This tells git that the
 \[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
 \[file\]}}
Commit your changes locally.

Now, the magic:

git push origin fcrepo-756
This command pushes the current state of your local repository, including all commits, up to github. Your work becomes part of the history of the fcrepo-756 branch on github.

...