Explorer で該当ディレクトリに移動しアドレス欄に powershell と入力して実行すると、該当ディレクトリをカレントディレクトリとして立ち上がります
Set-ExecutionPolicy RemoteSigned
New-item –type file –force $profile
notepad $profile
ファイルが開くのでエイリアスを追加して保存する
Set-Alias g git
Set-Alias l Get-ChildItem
PowerShell を再起動するとエイリアスが使えるようになっています。