Add cheery-pick to git cheat

This commit is contained in:
rahul 2016-08-28 08:24:02 +05:30
parent 80d2a09456
commit 6a1742984c
1 changed files with 4 additions and 0 deletions

View File

@ -145,3 +145,7 @@ git checkout -p HEAD^ -- /path/to/file
# Revert a commit and keep the history of the reverted change as a separate revert commit
git revert <commit SHA>
# Pich a commit from a branch to current branch. This is different than merge as
# this just applies a single commit from a branch to current branch
git cherry-pick <commit SHA1>