Results 24 comments of Jake Bolton

@tsmarvin What do you get running these? ```ps1 > Resolve-Path / # and > set-location -LiteralPath '/' > Get-ChildItem -path '/' ``` Maybe it's related to to windows root paths....

I've tried a bunch of variations. You can reproduce it with almost any expression that starts with a `(` ### You can reproduce it with this ```ps1 ($x = 10)...

Possibly related, I noticed that they end up copying by value, not ref, `$serr = $error` does not. ```ps1 $serr = $error $serr2 = $error | select -first 3 $serr3...

> Which comes back with branch information when pretty-printed, but not when assigned to a string. That's caused by the implicit `--decorate=auto` argument. [Log.Decorate](https://git-scm.com/docs/git-log#Documentation/git-log.txt-logdecorate) ## Working args ![image](https://github.com/StartAutomating/ugit/assets/3892031/9a31628c-b8bb-4dd7-9806-e60824f8416f) ```ps1 $color...