Change the git force parameter to default to no as a safety change.
Fixes #306
This commit is contained in:
parent
245dce0e30
commit
49f5b28fbd
1 changed files with 4 additions and 3 deletions
|
@ -93,13 +93,14 @@ options:
|
||||||
An example value could be "refs/meta/config".
|
An example value could be "refs/meta/config".
|
||||||
force:
|
force:
|
||||||
required: false
|
required: false
|
||||||
default: "yes"
|
default: "no"
|
||||||
choices: [ "yes", "no" ]
|
choices: [ "yes", "no" ]
|
||||||
version_added: "0.7"
|
version_added: "0.7"
|
||||||
description:
|
description:
|
||||||
- If C(yes), any modified files in the working
|
- If C(yes), any modified files in the working
|
||||||
repository will be discarded. Prior to 0.7, this was always
|
repository will be discarded. Prior to 0.7, this was always
|
||||||
'yes' and could not be disabled.
|
'yes' and could not be disabled. Prior to 1.9, the default was
|
||||||
|
`yes`
|
||||||
depth:
|
depth:
|
||||||
required: false
|
required: false
|
||||||
default: null
|
default: null
|
||||||
|
@ -611,7 +612,7 @@ def main():
|
||||||
remote=dict(default='origin'),
|
remote=dict(default='origin'),
|
||||||
refspec=dict(default=None),
|
refspec=dict(default=None),
|
||||||
reference=dict(default=None),
|
reference=dict(default=None),
|
||||||
force=dict(default='yes', type='bool'),
|
force=dict(default='no', type='bool'),
|
||||||
depth=dict(default=None, type='int'),
|
depth=dict(default=None, type='int'),
|
||||||
clone=dict(default='yes', type='bool'),
|
clone=dict(default='yes', type='bool'),
|
||||||
update=dict(default='yes', type='bool'),
|
update=dict(default='yes', type='bool'),
|
||||||
|
|
Loading…
Reference in a new issue