Public/SourceControl/New-EdenCommit.ps1
function New-EdenCommit { <# .SYNOPSIS Committing the source code changes. .DESCRIPTION Committing the source code changes. by calling the local './Eden/SourceControl/New-Commit.ps1' script. #> [CmdletBinding()] param( # The name of the local or global settins file to pass to the Eden script. [Alias("sn")] [String] $SettingsName, # The additional arguments to pass to the Eden script. [Alias("aa")] [HashTable] $AdditionalArguments ) Invoke-EdenCommandStandardFlow ` -LocalCommandPath "SourceControl/New-Commit" ` -SettingsName $SettingsName ` -CommandGroup "Source Control" ` -Message "Committing the source code changes." ` -AdditionalArguments $AdditionalArguments } New-Alias ` -Name e-sccn ` -Value New-EdenCommit ` -Force |