wzhanjun / blog

my person notes
0 stars 0 forks source link

powershell 设置别名 #59

Open wzhanjun opened 1 year ago

wzhanjun commented 1 year ago

C:\Users\{username}\Documents\WindowsPowerShell

Function GITSTATUS          { git status  }
Set-Alias -Name gs        -Value GITSTATUS 

Function DOCKERCOMPOSE        { docker-compose }
Set-Alias -Name dc        -Value DOCKERCOMPOSE 

https://juejin.cn/post/7111945932786106399

https://blog.csdn.net/u012917013/article/details/123794000