Cherry-Pick - CI/CD Glossary Definition
Cherry-pick (git cherry-pick <sha>) applies the change introduced by one specific commit onto the current branch, creating a new commit with the same diff but a different SHA and parent.
Cherry-pick (git cherry-pick <sha>) applies the change introduced by one specific commit onto the current branch, creating a new commit with the same diff but a different SHA and parent.
Cherry-pick (git cherry-pick <sha>) applies the change introduced by one specific commit onto the current branch, creating a new commit with the same diff but a different SHA and parent.
Related guides
Interactive Rebase - CI/CD Glossary DefinitionInteractive Rebase: An interactive rebase (`git rebase -i`) opens an editor listing commits so you can reorde…
Merge Commit - CI/CD Glossary DefinitionMerge Commit: A merge commit is a commit with two or more parents that joins diverged branches together, reco…
Commit-ish - CI/CD Glossary DefinitionCommit-ish: A commit-ish is anything Git can resolve to a commit: a full or short SHA, a branch, a tag, `HEAD…