Skip to content

Instantly share code, notes, and snippets.

@motus
Created February 14, 2020 01:45
Show Gist options
  • Save motus/60069e29b3cb0f5837bf2f2406222d35 to your computer and use it in GitHub Desktop.
Save motus/60069e29b3cb0f5837bf2f2406222d35 to your computer and use it in GitHub Desktop.
Set-Alias ll ls
Import-Module posh-git
(ssh-agent).split(";").Trim() |
Select-String -Pattern "^SSH_.*=" |
%{
($name, $val)="$_".split("=");
Invoke-Expression "`$env:$name=`"$val`""
}
ssh-add
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment