mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 13:22:48 +00:00
git: git reset with branch
`git reset <ref>` can be ambiguous and fail to switch to the correct branch. To avoid it, specify branch as well.
This commit is contained in:
@@ -816,7 +816,7 @@ def switch_version(git_path, module, dest, remote, version, verify_commit, depth
|
||||
if rc != 0:
|
||||
module.fail_json(msg="Failed to checkout branch %s" % branch,
|
||||
stdout=out, stderr=err, rc=rc)
|
||||
cmd = "%s reset --hard %s --" % (git_path, remote)
|
||||
cmd = "%s reset --hard %s/%s --" % (git_path, remote, branch)
|
||||
else:
|
||||
# FIXME check for local_branch first, should have been fetched already
|
||||
if is_remote_branch(git_path, module, dest, remote, version):
|
||||
|
||||
Reference in New Issue
Block a user