summaryrefslogtreecommitdiffstats
path: root/man/repo-wipe.1
diff options
context:
space:
mode:
Diffstat (limited to 'man/repo-wipe.1')
-rw-r--r--man/repo-wipe.161
1 files changed, 61 insertions, 0 deletions
diff --git a/man/repo-wipe.1 b/man/repo-wipe.1
new file mode 100644
index 00000000..1a8f7c16
--- /dev/null
+++ b/man/repo-wipe.1
@@ -0,0 +1,61 @@
1.\" DO NOT MODIFY THIS FILE! It was generated by help2man.
2.TH REPO "1" "November 2025" "repo wipe" "Repo Manual"
3.SH NAME
4repo \- repo wipe - manual page for repo wipe
5.SH SYNOPSIS
6.B repo
7\fI\,wipe <project>\/\fR...
8.SH DESCRIPTION
9Summary
10.PP
11Wipe projects from the worktree
12.SH OPTIONS
13.TP
14\fB\-h\fR, \fB\-\-help\fR
15show this help message and exit
16.TP
17\fB\-f\fR, \fB\-\-force\fR
18force wipe shared projects and uncommitted changes
19.TP
20\fB\-\-force\-uncommitted\fR
21force wipe even if there are uncommitted changes
22.TP
23\fB\-\-force\-shared\fR
24force wipe even if the project shares an object
25directory
26.SS Logging options:
27.TP
28\fB\-v\fR, \fB\-\-verbose\fR
29show all output
30.TP
31\fB\-q\fR, \fB\-\-quiet\fR
32only show errors
33.SS Multi\-manifest options:
34.TP
35\fB\-\-outer\-manifest\fR
36operate starting at the outermost manifest
37.TP
38\fB\-\-no\-outer\-manifest\fR
39do not operate on outer manifests
40.TP
41\fB\-\-this\-manifest\-only\fR
42only operate on this (sub)manifest
43.TP
44\fB\-\-no\-this\-manifest\-only\fR, \fB\-\-all\-manifests\fR
45operate on this manifest and its submanifests
46.PP
47Run `repo help wipe` to view the detailed manual.
48.SH DETAILS
49.PP
50The 'repo wipe' command removes the specified projects from the worktree (the
51checked out source code) and deletes the project's git data from `.repo`.
52.PP
53This is a destructive operation and cannot be undone.
54.PP
55Projects can be specified either by name, or by a relative or absolute path to
56the project's local directory.
57.SH EXAMPLES
58.SS # Wipe the project "platform/build" by name:
59$ repo wipe platform/build
60.SS # Wipe the project at the path "build/make":
61$ repo wipe build/make