Windows PowerShell equivalent using gitk:
gitk --all $(git fsck --no-reflog | Select-String "(dangling commit )(.*)" | %{ $_.Line.Split('')[2] })
There is probably a more efficient way to do this in one pipe, but this does the job.
Windows PowerShell equivalent using gitk:
gitk --all $(git fsck --no-reflog | Select-String "(dangling commit )(.*)" | %{ $_.Line.Split('')[2] })
There is probably a more efficient way to do this in one pipe, but this does the job.