πHow to apply a recipe with git cherry pick
Last updated
Was this helpful?
Was this helpful?
git remote add petal_pro [email protected]:petalframework/petal_pro.git
git fetch petal_pro# This commits it to your project
git cherry-pick <SHA_you_copied>
# If you don't want to commit it, but just have the code sitting in your working directory
git cherry-pick <SHA_you_copied> --no-commit