I have two branches namely old branch(currently working branch) and new branch. I want to push the old branch commit changes to new branch. Here what i followed the steps:`
Clone old branch and changed head and refs to new branch
then executed git cherry-pick --strategy=recursive -X theirs commit_name
After executing above command i see few lines +added and deleted
(The commit_name has 6 files)
In commit, i see only 3 files which have been corrected by inserting and deleting lines, but i couldn't see the remaining files to push to gerrit.
Please could someone help me out here. Please note i am not familiar with git stuff.