我应该使用什么git命令来等同于svn checkout
?
git checkout(?)
非常感谢!
答案 0 :(得分:22)
git clone
更像svn checkout
而不是git checkout
。 git 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