7 lines
223 B
PowerShell
7 lines
223 B
PowerShell
#!/bin/pwsh
|
|
param($context)
|
|
. "$PSScriptRoot/../../Scripts/Context.ps1";
|
|
|
|
[Context] $context = $context;
|
|
Write-Host "Configuring posh-git";
|
|
$context.AddPowerShellProfileStatement("0_posh-git", 'Import-Module "posh-git";');
|