等同于“svn checkout”的git?
我应该使用什么git命令来等同于svn checkout
?
git checkout(?)
非常感谢!
git clone
比git checkout
更类似于svn checkout
git checkout
。 git 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