Versions Compared

Key

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

...

  • Changes in working copy vs. previous commit:

    Code Block
    git diff <commit>
  • Changes between two previous commits:
    Code Block
    git diff <commit1> <commit2>
     

Working With Remote Repositories

Cloning

...

Remote Repository

Use the git clone command to check out a working copy of a remote repository:

...