We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The hint says "Make sure to do everything in the proper order! Branch one first, then two, then three" and the answer is
git checkout one; git cherry-pick C4 C3 C2; git checkout two; git cherry-pick C5 C4 C3 C2; git branch -f three C2;
But doesn't it matter the order? ex.
git checkout two; git cherry-pick C5 C4 C3 C2; git checkout one; git cherry-pick C4 C3 C2; git branch -f three C2;
The text was updated successfully, but these errors were encountered:
order is important,
look at the show goal, HEAD must be point to branch two.
show goal
HEAD
branch two
Sorry, something went wrong.
No branches or pull requests
The hint says "Make sure to do everything in the proper order! Branch one first, then two, then three"
and the answer is
But doesn't it matter the order?
ex.
The text was updated successfully, but these errors were encountered: