Equivalent of "svn checkout" for git?

What git command should I use to be equivalent to svn checkout ?

git checkout(?)

Many thanks!


git clone is more of an analogue to svn checkout than git checkout . git checkout just checks out a branch or commit from your local repository. git clone makes a new copy of a remote repository.


This is exactly what I wanted:

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

from Git for beginners: The definitive practical guide

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

上一篇: GIT提取或克隆存储库仅获取Master分支

下一篇: 等同于“svn checkout”的git?