相当于Git的“svn checkout”

ruoxqz4g  于 11个月前  发布在  Git
关注(0)|答案(2)|浏览(122)

我应该使用什么Git命令来等效于svn checkout

git checkout(?)

字符串

y53ybaqx

y53ybaqx1#

git clone更像是svn checkout而不是git checkoutgit checkout只是从本地仓库 checkout 一个分支或提交。git clone创建一个远程仓库的新副本。

wfveoks0

wfveoks02#

这正是我想要的:
SVN

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

字符串
Git

git clone [email protected]:pjhyett/foo.git
# Make your changes
git commit -a -m "my first commit"
git push


Git for beginners: The definitive practical guide

相关问题