Public/SourceControl/Show-EdenChanges.ps1

function Show-EdenChanges {
    <#
        .SYNOPSIS
        Showing the source code changes.

        .DESCRIPTION
        Showing the source code changes. by calling the local './Eden/SourceControl/Show-Changes.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/Show-Changes" `
        -SettingsName $SettingsName `
        -CommandGroup "Source Control" `
        -Message "Showing the source code changes." `
        -AdditionalArguments $AdditionalArguments
}
New-Alias `
    -Name e-scch `
    -Value Show-EdenChanges `
    -Force