bash - How to apply an old commit on Git? -
so, i'm trying apply old commit using cherry-pick, seems more difficult thought.
this bash looks like...
--head in master branch- git cherry-pick 6a0c632 error: not apply 6a0c632... hint: after resolving conflicts, mark corrected paths hint: 'git add <paths> or "git rm <paths>' hint: , commit result 'git commit' i've been using git 2 months , commands i've used basic ones: add, commit, push, pull...
step 1: fix merge conflicts.
step 2: add fixed file(s).
git add <fixed_file> step 3. continue cherry-pick.
git cherry-pick --continue
Comments
Post a Comment