diff options
author | Roger Shimizu <rosh@debian.org> | 2021-06-20 21:41:05 +0900 |
---|---|---|
committer | Mike Frysinger <vapier@google.com> | 2021-07-16 20:11:41 +0000 |
commit | 0a1f533e2835c856473e3e4046341a4d2f66764b (patch) | |
tree | 0902c039b76525f1c6785cec561df46265fdb787 /man/repo-rebase.1 | |
parent | 927d29a8afa26a3f1aec841f2150c65e3931ef9b (diff) | |
download | git-repo-0a1f533e2835c856473e3e4046341a4d2f66764b.tar.gz |
Add script 'release/update-manpages' to generate manpages
Debian package started to ship manpages for repo since 2.8 [1]
And it's about for one year. So I think it should be upstreamed.
The script depends on help2man, which is available in both debian [2]
and ubuntu [3].
[1] https://tracker.debian.org/news/1150858/accepted-repo-28-1-source-into-unstable
[2] https://tracker.debian.org/pkg/help2man
[3] https://launchpad.net/ubuntu/+source/help2man
Change-Id: Ide2b356d0944ebde34cc96c6d5a782655bd72288
Signed-off-by: Roger Shimizu <rosh@debian.org>
Reviewed-on: https://gerrit-review.googlesource.com/c/git-repo/+/309782
Reviewed-by: Mike Frysinger <vapier@google.com>
Diffstat (limited to 'man/repo-rebase.1')
-rw-r--r-- | man/repo-rebase.1 | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/man/repo-rebase.1 b/man/repo-rebase.1 new file mode 100644 index 00000000..aa261036 --- /dev/null +++ b/man/repo-rebase.1 | |||
@@ -0,0 +1,55 @@ | |||
1 | .\" DO NOT MODIFY THIS FILE! It was generated by help2man. | ||
2 | .TH REPO "1" "July 2021" "repo rebase" "Repo Manual" | ||
3 | .SH NAME | ||
4 | repo \- repo rebase - manual page for repo rebase | ||
5 | .SH SYNOPSIS | ||
6 | .B repo | ||
7 | \fI\,rebase {\/\fR[\fI\,<project>\/\fR...] \fI\,| -i <project>\/\fR...\fI\,}\/\fR | ||
8 | .SH DESCRIPTION | ||
9 | Summary | ||
10 | .PP | ||
11 | Rebase local branches on upstream branch | ||
12 | .SH OPTIONS | ||
13 | .TP | ||
14 | \fB\-h\fR, \fB\-\-help\fR | ||
15 | show this help message and exit | ||
16 | .TP | ||
17 | \fB\-\-fail\-fast\fR | ||
18 | stop rebasing after first error is hit | ||
19 | .TP | ||
20 | \fB\-f\fR, \fB\-\-force\-rebase\fR | ||
21 | pass \fB\-\-force\-rebase\fR to git rebase | ||
22 | .TP | ||
23 | \fB\-\-no\-ff\fR | ||
24 | pass \fB\-\-no\-ff\fR to git rebase | ||
25 | .TP | ||
26 | \fB\-\-autosquash\fR | ||
27 | pass \fB\-\-autosquash\fR to git rebase | ||
28 | .TP | ||
29 | \fB\-\-whitespace\fR=\fI\,WS\/\fR | ||
30 | pass \fB\-\-whitespace\fR to git rebase | ||
31 | .TP | ||
32 | \fB\-\-auto\-stash\fR | ||
33 | stash local modifications before starting | ||
34 | .TP | ||
35 | \fB\-m\fR, \fB\-\-onto\-manifest\fR | ||
36 | rebase onto the manifest version instead of upstream | ||
37 | HEAD (this helps to make sure the local tree stays | ||
38 | consistent if you previously synced to a manifest) | ||
39 | .SS Logging options: | ||
40 | .TP | ||
41 | \fB\-v\fR, \fB\-\-verbose\fR | ||
42 | show all output | ||
43 | .TP | ||
44 | \fB\-q\fR, \fB\-\-quiet\fR | ||
45 | only show errors | ||
46 | .TP | ||
47 | \fB\-i\fR, \fB\-\-interactive\fR | ||
48 | interactive rebase (single project only) | ||
49 | .PP | ||
50 | Run `repo help rebase` to view the detailed manual. | ||
51 | .SH DETAILS | ||
52 | .PP | ||
53 | \&'repo rebase' uses git rebase to move local changes in the current topic branch | ||
54 | to the HEAD of the upstream history, useful when you have made commits in a | ||
55 | topic branch but need to incorporate new upstream changes "underneath" them. | ||