From 654b65658c03cb0c4f2b9cfc5309c52a7bca3414 Mon Sep 17 00:00:00 2001 From: Scott Hanselman Date: Tue, 31 Jan 2012 00:51:52 -0800 Subject: [PATCH] deleted a file --- poshgit.Types.ps1xml | 38 -------------------------------------- 1 file changed, 38 deletions(-) delete mode 100644 poshgit.Types.ps1xml diff --git a/poshgit.Types.ps1xml b/poshgit.Types.ps1xml deleted file mode 100644 index a4e2575..0000000 --- a/poshgit.Types.ps1xml +++ /dev/null @@ -1,38 +0,0 @@ - - - - System.IO.FileInfo - - - Git - - $retVal = "" - if ($GitStatus.Index.Added -contains $this.Name) { $retVal += "+" } ` - elseif ($GitStatus.Index.Modified -contains $this.Name) { $retVal += "~" } ` - elseif ($GitStatus.Index.Deleted -contains $this.Name) { $retVal += "-" } ` - elseif ($GitStatus.Index.Unmerged -contains $this.Name) { $retVal += "!" } ` - else { $retVal += " " } - - if ($GitStatus.Working.Added -contains $this.Name) { $retVal += "+" } ` - elseif ($GitStatus.Working.Modified -contains $this.Name) { $retVal += "~" } ` - elseif ($GitStatus.Working.Deleted -contains $this.Name) { $retVal += "-" } ` - elseif ($GitStatus.Working.Unmerged -contains $this.Name) { $retVal += "!" } ` - else { $retVal += " " } - - $retVal - - - - - - System.IO.DirectoryInfo - - - Git - - "" - - - - - \ No newline at end of file