Skip to content

Instantly share code, notes, and snippets.

View elithrade's full-sized avatar

Bin Hu elithrade

  • Perth, Western Australia
View GitHub Profile
@elithrade
elithrade / git-aliases-pwsh.txt
Last active March 28, 2024 12:27
Windows pwsh aliases
Invoke-Expression (&starship init powershell)
Invoke-Expression (& { (zoxide init powershell | Out-String) })
function Get-GitStatus { & git status -sb $args }
New-Alias -Name gs -Value Get-GitStatus -Force -Option AllScope
function Get-GitDiff { & git diff $args}
New-Alias -Name gd -Value Get-GitDiff -Force -Option AllScope