Add Force parameter to UpdateRepos
This commit is contained in:
parent
3775b7c1b9
commit
fe5924cc22
|
|
@ -15,6 +15,8 @@
|
|||
The author name to use in the commit message. (Optional)
|
||||
.PARAMETER GitAuthorEmail
|
||||
The author email to use in the commit message. (Optional)
|
||||
.PARAMETER Force
|
||||
Specified this to push commits without prompting.
|
||||
.PARAMETER GitCommitArgs
|
||||
Any remaining arguments are passed as arguments to 'git commit' actions in each repo.
|
||||
#>
|
||||
|
|
@ -29,6 +31,7 @@ param(
|
|||
[switch]$NoPush,
|
||||
[string]$GitAuthorName = $null,
|
||||
[string]$GitAuthorEmail = $null,
|
||||
[switch]$Force,
|
||||
[string[]]$GitCommitArgs = @()
|
||||
)
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue