From 67e7be965056f6d2eb339bf076bf8955be29a507 Mon Sep 17 00:00:00 2001 From: Waldir Pimenta Date: Fri, 7 Jun 2019 11:02:10 +0100 Subject: [PATCH] git-cherry-pick: add example for -n option (#3084) --- pages/common/git-cherry-pick.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pages/common/git-cherry-pick.md b/pages/common/git-cherry-pick.md index 3d42ccf16..88e8a8223 100644 --- a/pages/common/git-cherry-pick.md +++ b/pages/common/git-cherry-pick.md @@ -1,7 +1,7 @@ # git cherry-pick > Apply the changes introduced by existing commits to the current branch. -> To apply changes to another branch, first use git-checkout to switch to the desired branch. +> To apply changes to another branch, first use `git checkout` to switch to the desired branch. > More information: . - Apply a commit to the current branch: @@ -15,3 +15,7 @@ - Apply multiple (non-sequential) commits to the current branch: `git cherry-pick {{commit_1}} {{commit_2}}` + +- Add the changes of a commit to the working directory, without creating a commit: + +`git cherry-pick -n {{commit}}`