svn

: SVNで使ってたコマンドのGitバージョン

//svn log -v $ git log --name-status //svn cat -r REV path/to/file $ git cat-file -p REV:path/to/file //svn cat -r REV path/to/file > path/to/file $ git checkout REV path/to/file // rm path/to/file; svn update $ git checkout path/to/file他…