赞
踩
win10下Powershell功能强大,不过它默认不能支持git指令。需要用到posh-git将指令加载到powershell。步骤如下:
1、安装git
官网或点击相关资源中链接下载安装包,按默认设置安装即可。
2、确认环境变量
默认安装会将Git的安装目录自动添加至系统环境变量的Path中去,如没有,请手动添加。
3、下载posh-git-master
下载安装包,解析,记住解压目录。
4、Powershell安装脚本
Win+x -> 运行Powershell(管理员)。Powershell默认不支持运行脚本,需要首先执行指令
Set-ExecutionPolicy RemoteSigned -Scope CurrentUser -Confirm
弹出提示框,输入“Y”确认
cd切换目录为posh-git-master解压目录,执行安装脚本。
.\install.ps1
回车,等待安装完成。
5、安装成功
上述任务执行完毕后,输入git命令
git --version
查看版本信息,正常显示,大功告成!可以愉快的在powershell中使用git指令了。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。