Public/SourceControl/Sync-EdenCommits.ps1
function Sync-EdenCommits { <# .SYNOPSIS Syncing the source code commits. .DESCRIPTION Syncing the source code commits. by calling the local './Eden/SourceControl/Sync-Commits.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/Sync-Commits" ` -SettingsName $SettingsName ` -CommandGroup "Source Control" ` -Message "Syncing the source code commits." ` -AdditionalArguments $AdditionalArguments } New-Alias ` -Name e-sccs ` -Value Sync-EdenCommits ` -Force |