Add Clear-SshKeys function to PS

This commit is contained in:
2020-07-22 22:05:47 +01:00
parent 589d50c2fb
commit 0fd585e424

View File

@@ -14,6 +14,10 @@ function Add-SshKey {
}
}
function Clear-SshKeys {
Invoke-Expression "ssh-add -D"
}
function Update-Dotfiles {
Join-Path $HOME '.dotfiles' | Push-Location
Invoke-Expression -Command "git pull --rebase --autostash"