Tried to add an alias "gl": "git log --oneline --all --graph --decorate $args", but got an infinite loop of Remove-Item : Alias was not removed because alias gl is constant or read-only. on initiating pshazz because there is no -force option when in the aliases.ps1 module.
Fixed it in PR https://github.com/lukesampson/pshazz/pull/39 (also freed up rm by replacing it with Remove-Item in pshazz scripts)
Tried to add an alias
"gl": "git log --oneline --all --graph --decorate $args"
, but got an infinite loop ofRemove-Item : Alias was not removed because alias gl is constant or read-only.
on initiating pshazz because there is no-force
option when in thealiases.ps1
module. Fixed it in PR https://github.com/lukesampson/pshazz/pull/39 (also freed uprm
by replacing it withRemove-Item
in pshazz scripts)