OLD | NEW |
(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: |
OLD | NEW |