Getting errors when using GitHub for Windows

前端 未结 3 863
借酒劲吻你
借酒劲吻你 2021-01-12 06:29

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

3条回答
  •  梦谈多话
    2021-01-12 06:50

    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.

    Github for windows download here

    Help Here

    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 be RemoteSigned or Unrestricted). If scripts are not enabled, run PowerShell as Administrator and call Set-ExecutionPolicy RemoteSigned -Scope CurrentUser -Confirm.

提交回复
热议问题