Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Aug 20th, 2012  |  syntax: None  |  size: 0.16 KB  |  hits: 6  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. function status() {
  2.         if(Test-Path .svn) {
  3.                 Write-Host
  4.                 svn status
  5.                 Write-Host
  6.         }
  7.  
  8.         if(Test-Path .git) {
  9.                 git status
  10.         }
  11.  
  12.         if(Test-Path .hg) {
  13.                 hg status
  14.         }
  15. }