From 4906001a1deee2356cea0b94ece092d3e7f2fe07 Mon Sep 17 00:00:00 2001 From: Joel Gallant Date: Wed, 1 Jun 2016 10:47:51 -0600 Subject: [PATCH 1/2] Adding git to `cherry-pick` --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c75ad48..7046962 100644 --- a/README.md +++ b/README.md @@ -278,7 +278,7 @@ git log --no-merges --stat --reverse master.. ## Pick commits across branches using cherry-pick ```sh -git checkout && cherry-pick +git checkout && git cherry-pick ``` ## Find out branches containing commit-hash From 1279208ef30e90d6e662d71a730b2107c3e92dd7 Mon Sep 17 00:00:00 2001 From: Joel Gallant Date: Wed, 1 Jun 2016 10:49:41 -0600 Subject: [PATCH 2/2] Adding git to `cherry-pick` --- tips.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tips.json b/tips.json index df23a19..755eb1c 100644 --- a/tips.json +++ b/tips.json @@ -95,7 +95,7 @@ "tip": "git log --no-merges --stat --reverse master.." }, { "title": "Pick commits across branches using cherry-pick", - "tip": "git checkout && cherry-pick " + "tip": "git checkout && git cherry-pick " }, { "title": "Find out branches containing commit-hash", "tip": "git branch -a --contains ",