A collection of 3 posts

Using Git via SSH on Windows 10 (1803) on Powershell

Recently did a fresh install of Windows 10 with all the vital updates and tried to use git fetch  on both cmd and powershell but was prompted to enter my ssh key so I tried to run ssh-add but I got an error saying Error connecting to agent: No such file or directory so then I tried ssh-agent and got an error saying unable to start ssh-agent service, error :1058  so what could it be?A quick scan of Get-Service ...

Useful Powershell commands

Commands and usage Autocompletion (tab and ctrl + space ing) Autocompletion is your friend when it comes to using Powershell. For example, if I want to see a list of running services on my machine I can execute Get-Service but what if I only wanted to see a list subset of that filtered by some property? How would I know what properties I can filter by? ctrl + space to the rescue! Enter Get-Service | Where-Object -Property followed by a ctrl + space this ...