Skip to content

Commit

Permalink
Update git.md
Browse files Browse the repository at this point in the history
  • Loading branch information
jsalonen committed Jun 10, 2014
1 parent 20b8e81 commit 45b5c13
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions git.md
Original file line number Diff line number Diff line change
Expand Up @@ -238,6 +238,15 @@ Which is shorthand for:
git branch feature2
git checkout feature2

### Cherry-picking specific commits from branch

Picking single commit with id `62ac3d` from feature branch, etc. to master:

git checkout master
git cherry-pick 62ac3d

See also: <https://ariejan.net/2010/06/10/cherry-picking-specific-commits-from-another-branch/>

## Recipes

### Git Workflows
Expand Down

0 comments on commit 45b5c13

Please sign in to comment.