Checkout branch before rebase in switch_version
This commit is contained in:
parent
d6f7ffd4bc
commit
3ec51ce587
1 changed files with 4 additions and 0 deletions
4
git
4
git
|
@ -182,6 +182,10 @@ def switch_version(module, dest, remote, version):
|
||||||
cmd = "git checkout --force %s" % version
|
cmd = "git checkout --force %s" % version
|
||||||
else:
|
else:
|
||||||
# is there a better way to do this?
|
# is there a better way to do this?
|
||||||
|
branch = get_head_branch(module, dest, remote)
|
||||||
|
(rc, out, err) = _run("git checkout --force %s" % branch)
|
||||||
|
if rc != 0:
|
||||||
|
module.fail_json(msg="Failed to checkout branch %s" % branch)
|
||||||
cmd = "git rebase %s" % remote
|
cmd = "git rebase %s" % remote
|
||||||
return _run(cmd)
|
return _run(cmd)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue