当前位置:   article > 正文

Windows11下PowerShell配置Git_powershell git

powershell git

介绍

Windows 11下powershell可以与git结合使用,不用再单独调出git Bash了。

git: https://git-scm.com/download/win

PowerShell与Git结合

第一步

以管理员身份运行PS;
在这里插入图片描述

第二步

在弹出的窗口里键入:Get-ExecutionPolicy 命令,按enter键;

如果返回“RemoteSigned”,则代表已经配置过了;如果没有配置过,则返回“Restricted”;
在这里插入图片描述

第三步

如果已经配置过,则直接退出就可以在powershell中使用Git了。

否则,
继续键入: Set-ExecutionPolicy -Scope CurrentUser -ExecutionPolicy RemoteSigned -Force 命令,按enter键;
在这里插入图片描述

第四步

添加posh-git模块,
需要键入:Install-Module posh-git -Scope CurrentUser -Force 命令,按enter键;
在这里插入图片描述

第五步

模块导入PS里,
键入: Import-Module posh-git命令,按enter键;
在这里插入图片描述

第六步

设置默认加载,
键入: Add-PoshGitToProfile -AllHosts命令,按enter键;
在这里插入图片描述

第七步

开始在PowerShell中使用Git;会加载一定时间,键入git命令,会提示git的操作指南,代表可以正常使用;
在这里插入图片描述

参考

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/AllinToyou/article/detail/393835
推荐阅读
相关标签
  

闽ICP备14008679号