等同于“svn checkout”的git?

我应该使用什么git命令来等同于svn checkout

git checkout(?)

非常感谢!


git clonegit checkout更类似于svn checkout git checkoutgit checkout只是从你的本地仓库git checkout出一个分支或提交。 git clone创建一个远程仓库的新副本。


这正是我想要的:

SVN

$ svn checkout svn://foo.googlecode.com/svn/trunk foo
# make your changes
$ svn commit -m "my first commit"

GIT

$ git clone git@github.com:pjhyett/foo.git
# make your changes
$ git commit -a -m "my first commit"
$ git push

来自Git初学者:最权威的实践指南

链接地址: http://www.djcxy.com/p/3841.html

上一篇: Equivalent of "svn checkout" for git?

下一篇: How to checkout a remote branch in Git?