I suddenly got errors when I was using git last week, for no apparent reason. I only have access to a windows PC.
The errors I\'m getting doesn\'t seem to give me an
Once you start your Powershell command window, run git --version. Github for windows installs msysGit
GitHub for Windows includes a fully functional version of msysGit — no need to install anything extra. You can pull up a PowerShell console within the context of any repository.
There is some information on the uninstall github for windows page about removing left over files.
Github for windows uses posh-git for git to be used by powershell.
Verify execution of scripts is allowed with
Get-ExecutionPolicy(should beRemoteSignedorUnrestricted). If scripts are not enabled, run PowerShell as Administrator and callSet-ExecutionPolicy RemoteSigned -Scope CurrentUser -Confirm.