The force flag is very common in many commands and is commonly abbreviated with '-f', so add that to worktree removal, too Signed-off-by: Stefan Beller <sbeller@xxxxxxxxxx> --- As a side note: $ git worktree add ../test HEAD^ $ cd ../test $ make $ git worktree remove test fatal: working trees containing submodules cannot be moved or removed (This is on git.git, which does have submodules, but they should not be relevant here? Instead we rather want to point out files left over. Not sure. I also plan on having worktrees and submodules to work well together eventually) builtin/worktree.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builtin/worktree.c b/builtin/worktree.c index 40a438ed6c..d734874d58 100644 --- a/builtin/worktree.c +++ b/builtin/worktree.c @@ -783,7 +783,7 @@ static int remove_worktree(int ac, const char **av, const char *prefix) { int force = 0; struct option options[] = { - OPT_BOOL(0, "force", &force, + OPT_BOOL('f', "force", &force, N_("force removing even if the worktree is dirty")), OPT_END() }; -- 2.17.0.484.g0c8726318c-goog