Created
July 31, 2012 08:41
-
-
Save keithbloom/3215053 to your computer and use it in GitHub Desktop.
Use git status to remove unwanted files added by NuGet
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git status --porcelain | select-string -pattern "\.dll|\.xml" | foreach-object { $_ -replace "\?\? "} | rm |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment