Skip to content
Snippets Groups Projects
Commit dac2ce67 authored by Jani Nikula's avatar Jani Nikula
Browse files

dim: remove dim cherry-pick-branch subcommand


Demote dim_cherry_pick_branch to an internal function. It's too
specialized (at least for now) to be useful for anything other than as a
helper for the cherry-pick-fixes and cherry-pick-next-fixes subcommands.

As a side effect, fixes mancheck for missing documentation for the
subcommand.

Reviewed-by: default avatarRodrigo Vivi <rodrigo.vivi@intel.com>
Signed-off-by: default avatarJani Nikula <jani.nikula@intel.com>
parent dd8bd991
No related merge requests found
...@@ -987,7 +987,7 @@ function git_list_fixes ...@@ -987,7 +987,7 @@ function git_list_fixes
"$@" "$@"
} }
function dim_cherry_pick_branch function cherry_pick_branch
{ {
local branch log fail_log needed have_fixes local branch log fail_log needed have_fixes
...@@ -1057,13 +1057,13 @@ function dim_cherry_pick_branch ...@@ -1057,13 +1057,13 @@ function dim_cherry_pick_branch
function dim_cherry_pick_fixes function dim_cherry_pick_fixes
{ {
assert_branch drm-intel-fixes assert_branch drm-intel-fixes
dim_cherry_pick_branch drm-intel-fixes "$@" cherry_pick_branch drm-intel-fixes "$@"
} }
function dim_cherry_pick_next_fixes function dim_cherry_pick_next_fixes
{ {
assert_branch drm-intel-next-fixes assert_branch drm-intel-next-fixes
dim_cherry_pick_branch drm-intel-next-fixes "$@" cherry_pick_branch drm-intel-next-fixes "$@"
} }
dim_alias_ar=apply-resolved dim_alias_ar=apply-resolved
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment