git-bashでもいいけど、gitのためにgit-bashつかうのはだるいのでpowershellでもgitを見やすく使いやすくしたいということで調べた
結論: posh-gitを使うとよい
インストール
powershellに以下コマンドをいれる
PowerShellGet\Install-Module posh-git -Scope CurrentUser -Force
このままだとposh-gitが適用されていないので、powershell profileに直接かコマンドで追記して変更を永続化する。
コマンドで追記(推奨)
powershellで実行
Add-PoshGitToProfile
直接追記
powershellprofileの場所を調べる.powershellで実行
$profile
\Users\yourname\Documents\WindowsPowerShell\Microsoft.PowerShell_profile.ps1に追記して上書き保存
Import-Module posh-git