From c697371c07d3572456e53757187192cd5fc20560 Mon Sep 17 00:00:00 2001 From: Marcello Lamonaca Date: Sun, 10 Mar 2024 12:07:20 +0100 Subject: [PATCH] git: add git worktree notes --- docs/misc/git.md | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/docs/misc/git.md b/docs/misc/git.md index 8acffcd..3956745 100644 --- a/docs/misc/git.md +++ b/docs/misc/git.md @@ -233,8 +233,8 @@ It's generally recommended creating annotated tags so it's possible to have all `git branch `: create new branch `git branch -d|--delete `: delete specified branch `git branch -m|--move `: rename a branch without affecting the branch's history -`git checkout -b `: create a branch and switches to it, same as `git branch ; git checkout ` -`git checkout `: change current branch (update HEAD) and update working directory +`git switch -c `: create a branch and switches to +`git switch `: change current branch (update HEAD) and update working directory `git merge `: merges into current branch `git merge --continue`: continue previous merge after solving a merge conflict @@ -245,6 +245,19 @@ It's generally recommended creating annotated tags so it's possible to have all `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) + +### Worktrees + +A git repository can support multiple working trees, allowing to check out more than one branch at a time. + +Additional worktrees are called "linked worktrees" as opposed to the "main worktree" prepared by `git init` or `git clone`. +A repository has one main worktree (if it’s not a bare repository) and zero or more linked worktrees. + +`git worktree list`: show worktrees +`git worktree add `: create worktree at `` and checkout `` +`git worktree add -b `: create worktree and branch at `` +`git worktree remove `: remove a worktree + ### Undo & Rewriting History `git rm -r --cached `: remove a file from being tracked