Changes between Version 19 and Version 20 of UsingGit


Ignore:
Timestamp:
12/15/10 07:42:49 (15 years ago)
Author:
JYA
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • UsingGit

    v19 v20  
    5454||= svn command =||= git command =||= comments =||
    5555|| svn checkout || git clone || ||
    56 || svn diff || git diff || pretty much identical ||
     56|| svn diff || git diff HEAD || pretty much identical ||
     57|| svn diff || git diff || show differences since last stage commit||
    5758|| svn stat || git status || ||
    5859|| svn commit || git commit / git push || in git, git commit commits locally, git push pushes to the upstream repo.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Additionally, changes must be staged before committing. ||