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