diff --git a/scripts/UpdateRepos.ps1 b/scripts/UpdateRepos.ps1 index ddadf34bbf..6c77f66534 100755 --- a/scripts/UpdateRepos.ps1 +++ b/scripts/UpdateRepos.ps1 @@ -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 = @() )