What's the git equivalent of the following svn workflow:
export foo
import bar
Is it the following?
checkout master
- 开发者_JAVA百科
tag foo
branch bar
It's simply creating a new repository with git init and then "git pull" the right branch from the other repository. You end up with a new repository containing only the one branch.
精彩评论