最近入职新公司,没mac用了,配了windows 11的办公机器。

又因为windows的指令和linux/mac这些体系有很大的差异,这边懒癌发生,没去咋折腾。

总算在手动敲了四周的git status, git rebase, git pull –rebase后,我受不了了,决计把alias给搞一下。

PowerShell

windows 11 有PowerShell, goland 默许也是用的PowerShell,而不是很老的windows那个指令提示符。 所以这儿只讲PowerShell的。

找到装备文件的绝对路径

在Powershell的操控台中,输入echo $profile

windows 11 装备 alias

这个就是PowerShell的装备文件地址。如果这个文件不存在的话,需要自己手动创立

我的机器上也没有这个文件,所以创立了一个

## windows下的创立指令,注意自己换路径哦
 Invoke-Item -Path C:UsersxxxDocumentsWindowsPowerShellMicrosoft.PowerShell_profile.ps1

增加alias别名

用恣意编辑器打开Microsoft.PowerShell_profile.ps1文件,增加函数比方

Function gba(){
     git branch -a
}
Function gco([string]$branch){
     git checkout $branch
}
Function gst(){
     git status
}
Function gpr(){
     git pull --rebase
}

我这儿全都是单条指令的,其实能写多条指令的,具体自己探索下

重启PowerShell并运用

能看到alias现已生效了,哎舒服了

windows 11 装备 alias

相关参阅

cloud.tencent.com/developer/a… blog.csdn.net/a772304419/…