Ok so I Have a branch in git that looks like this
A-B-C-D-E
and a branch that looks like this
A-B-F-G
I want to make a branch like this
A-B-D-E-F-G
I think tagging might be involved but I am rather new to git.
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.
You may want to create a new branch, starting at commit
B, and then cherry-pick the specific commits you’re interested in onto your new branch.