diff --git a/Git/git.md b/Git/git.md index 5b2b37f..d1796b3 100644 --- a/Git/git.md +++ b/Git/git.md @@ -205,7 +205,9 @@ It's generally recommended creating annotated tags so it's possible to have all `git rebase`: rebase set of patches onto a new base `git rebase -i`: interactive rebasing -`gitk`: show graph of history (git for windows only) +`git cherry-pick `: bring in a commit from another branch +`git cherry-pick ^..`: bring in a range of commits from another branch (first included) +`git cherry-pick ..`: bring in a range of commits from another branch (first excluded) ### Undo & [Rewriting History](https://www.themoderncoder.com/rewriting-git-history/)