Answers for "git worktree prune"

0

git worktree

git worktree add <path> <branch>
Posted by: Guest on February-13-2020
0

git worktree prune

$ mkdir a
$ cd a
$ git init
$ git commit --allow-empty --allow-empty-message -m ''
$ git worktree add ../b
$ ls .git/worktrees/
b
$ rm -rf ../b
$ git worktree prune
$ ls .git/worktrees/
$
Posted by: Guest on December-11-2019

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language