What’s the git equivalent of the following svn workflow:
-
export foo -
import bar
Is it the following?
-
checkout master -
tag foo -
branch bar
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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.