Add Force parameter to UpdateRepos

This commit is contained in:
Ryan Brandenburg 2017-11-08 11:44:53 -08:00
parent 3775b7c1b9
commit fe5924cc22
1 changed files with 3 additions and 0 deletions

View File

@ -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 = @()
)