Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7672967
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T16:24:19+00:00 2026-05-31T16:24:19+00:00

Using posh-git in powershell I am able to list all the items in the

  • 0

Using posh-git in powershell I am able to list all the items in the working tree that have changed, by using the collection variable $GitStatus.Working, I can use this list in a where clause to filter a directory listing like so

dir | where {$GitStatus.Working -contains $_.Name}

this works really well to display all the files in the current directory that are altered but not yet in the index, however when I run this same command with the -recurse directive the file(s) no longer match. I don’t understand why. Any ideas?

(Note Posh-GiTDir from Scott Hanselman suffers from the same problem, not surprisingly as he uses basically the same technique, to show the “Git” column)

Edit: This started when I noticed that the Posh-GitDir Git column did not display anything when I did a recursive directory listing. It’s useful to be able to quickly see what’s changed “from this folder down”, I looked at how Posh-GitDir gets its info to try and debug why it wasn’t working for a recurse.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-31T16:24:20+00:00Added an answer on May 31, 2026 at 4:24 pm

    That is because you are using $_.Name, but when you do git status, which is what $GitStatus would give you from Posh-Git, it will give the directory and the file name. So when you are considering the current folder only ( dir without -recurse ) it works out find as it will only be the names. But when you consider files within directories, they will be relavtive paths and will not match with $_.name

    And btw, $GitStatus.Working is SUPPOSED to show the files in the repo that are in working directory but not added. Why are you trying to get a list of all files and filtering it with the items from $GitStatus.Working

    If you want FileInfo object from the $GitStatus.Working, try doing:

    $GitStatus.Working | gi
    

    Edited to show the final solution based on this answer:
    So for my purposes, what I did was….

    $working = $GitStatus.Working | gi | %{$_.FullName}
    dir -recurse | where {$working -contains $_.FullName}
    

    (edited the edit, the previous snippet was not correct.)

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm using github to store my PowerShell profile. I found posh-vcs that I'd like
Using TortoiseSVN against VisualSVN I delete a source file that I should not have
using a binary search tree I need to add to a vector all int
Using report builder 3.0, I have a report that queries a cube. How do
Using CRM 4, I have an entity form that contains a tab with an
I have a DLL assembly that returns a List(of EmailItem). EmailItem is a custom
Using online interfaces to a version control system is a nice way to have
Using ASP.NET MVC there are situations (such as form submission) that may require a
Using C# and System.Data.SqlClient, is there a way to retrieve a list of parameters
Using C#, I need a class called User that has a username, password, active

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.