2
I wanted to know how I copy a commit from one project to another.
I thought it would just be git cherry-pick 76a99b8c395ebbc40a07c04dc9e0d9fefc9982cd
, but that’s only if I’m within the same project, when I want to move from one branch to another.
Like I do from one project to the other?
Cherry pick doesn’t roll. What you can try is to generate a patch of that commit and apply it to the other Object. This question may help you https://answall.com/questions/148309/quando-devo-usar-um-patch
– gmsantos
You want to move from one project to another, that’s it ?
– Roknauta