使用windows powershell ISE管理命令窗口,并集成git命令
Posted Hewitt
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用windows powershell ISE管理命令窗口,并集成git命令相关的知识,希望对你有一定的参考价值。
写于2018-09-03(基于win10)
开启
- win + s
- 输入 ise
操作
主要使用新建的power shell选项卡
将git集成到power shell中
安装准备
确定你的power shell版本是5.X或者power Shell Core 6.0(使用$PSVersionTable.PSVersion查看版本)
检查脚本执行规则是否设置为RemoteSigned或Unrestricted(使用Get-ExecutionPolicy查看,使用Set-ExecutionPolicy RemoteSigned -Scope CurrentUser -Confirm)
git 命令要添加到环境变量中
开始安装
打开powershell ise
执行命令 PowerShellGetInstall-Module posh-git -Scope CurrentUser -AllowPrerelease -Force 或是 PowerShellGetUpdate-Module posh-git(更新)
引入并且支持所有用户所有主机,在管理员权限下打开powershell,执行命令 Add-PoshGitToProfile -AllUsers -AllHosts
完毕,重启powershell即可
补充
- 在powershell ise中,直接ctrl + c可能会在右下角一直提示正在停止,实际并未停止,所以这里采用杀死进程的方式将其关闭
- 方式一: stop-process -Name ‘node‘ (将所有node进程全部关闭)
- 方式二: get-process node 查看与node相关的所有进程(主要看id),再执行stop-process -id id号 关闭对应的node进程
参考
以上是关于使用windows powershell ISE管理命令窗口,并集成git命令的主要内容,如果未能解决你的问题,请参考以下文章
Windows7系统中的Windows PowerShell ISE和Windows PowerShell的区别以及作用?
Windows PowerShell ISE 是什么和 PowerShell 有什么区别
从 Powershell ISE 和 Windows 资源管理器运行脚本的不同行为
如何在Windows Server 2008 R2上开启Windows Power Shell ISE
powershell 用于添加上下文菜单项以打开PowerShell命令提示符并使用PowerShell ISE编辑文件的功能