Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(182)

Side by Side Diff: docs/src/git-reparent-branch.txt

Issue 184253003: Add git-reup and friends (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/depot_tools.git@freeze_thaw
Patch Set: minor fixes Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 git-reparent-branch(1)
2 =====================
3
4 NAME
5 ----
6 git-reparent-branch -
7 include::_git-reparent-branch_desc.helper.txt[]
8
9 SYNOPSIS
10 --------
11 [verse]
12 'git reparent-branch' <new_parent>
13
14 DESCRIPTION
15 -----------
16
17 Change the 'upstream' of the current branch, and then run
18 linkgit:git-rebase-update[1] to move the commits in the current branch, as well
19 as the commits in all descendant branches, onto the new parent.
20
21 `<new_parent>` may be either a local branch, remote branch, OR a tag (such as
22 `lkgr`).
23
24 This is particularly useful to reparent an independent CL to become dependent on
25 another CL, or vice versa. This could happen if you started both on the
26 assumption that they were independent, but later realized that this was not the
27 case.
28
29
30 include::_aliases.txt[]
31
32 ----
33 [alias]
34 git rp = reparent-branch
35 ----
36
37 SEE ALSO
38 --------
39 linkgit:git-rebase-update[1], linkgit:git-rename-branch[1],
40 linkgit:git-new-branch[1], linkgit:git-upstream-diff[1]
41
42 include::_footer.txt[]
43
44 // vim: ft=asciidoc noexpandtab:
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698