Software Configuration Management
After an editor and a compiler, the version control is the most crucial tool for software development
while
statement isgit
SVN | Git |
---|---|
svn checkout url | git clone url (git checkout branch) |
svn update | git pull |
svn commit -m "Add feature" | git commit -am "Add feature"; git push |
svn status | git status |
svn revert path | git reset –hard path |
svn add file; svn rm file; svn mv file | git add file; git rm file; git mv file |