git
git init
git add
git commit
git reset --hard commit_id
git log
git reflog
git checkout -- file
git reset HEAD <file>
git rm
git remote add origin url
git push -u origin master
git clone
git branch <name>
git checkout -b dev
git merge <name>
git branch -d <name>
git stash
git stash pop
git branch -D <name>
git push origin branch-name
git pull
git tag <tagname>
git push origin --tags
git tag -d <tagname>
git push origin :refs/tags/<tagname>
svn
svn update
svn add
svn delete
svn copy
svn move
svn status
svn diff
svn revert
svn update
svn resoveled
svn commit
svn copy branchs tags
svn merge
svn switch