Skip to content
This repository was archived by the owner on Jan 22, 2024. It is now read-only.

Latest commit

 

History

History
executable file
·
17 lines (11 loc) · 382 Bytes

File metadata and controls

executable file
·
17 lines (11 loc) · 382 Bytes

git cherry-pick

Reference docs

Given one or more existing commits, apply the change each one introduces, recording a new commit for each. This requires your working tree to be clean (no modifications from the HEAD commit).

Simple cherry pick

git cherry-pick <commit-SHA>

Cherry pick multiple commits

git cherry-pick <commit-SHA-1> <commit-SHA-2>