相当于 Git 的“svn checkout”

问题描述 投票:0回答:2

我应该使用什么 Git 命令才能相当于

svn checkout

git checkout(?)
git svn git-checkout svn-checkout
2个回答
25
投票

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


15
投票

这正是我想要的:

SVN

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

吉特

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

来自 Git 初学者:权威的实用指南

© www.soinside.com 2019 - 2024. All rights reserved.