我应该使用什么 Git 命令才能相当于
svn checkout
?
git checkout(?)
这正是我想要的:
SVN
$ svn checkout svn://foo.googlecode.com/svn/trunk foo
# make your changes
$ svn commit -m "my first commit"
吉特
$ git clone [email protected]:pjhyett/foo.git
# make your changes
$ git commit -a -m "my first commit"
$ git push