相当于git的“svn checkout”?

时间:2013-09-19 16:59:04

标签: git svn git-checkout svn-checkout

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

git checkout(?)

非常感谢!

2 个答案:

答案 0 :(得分:22)

git clone更像svn checkout而不是git checkoutgit checkout只是从本地存储库中检出分支或提交。 git clone制作远程存储库的新副本。

答案 1 :(得分:12)

这正是我想要的:

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 for beginners: The definitive practical guide