-
-
Save danielmoore/837192 to your computer and use it in GitHub Desktop.
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 functions | |
# Mark Embling (http://www.markembling.info/) | |
# Is the current directory a git repository/working copy? | |
function isCurrentDirectoryGitRepository { | |
if ((Test-Path ".git") -eq $TRUE) { | |
return $TRUE | |
} | |
# Test within parent dirs | |
$checkIn = (Get-Item .).parent | |
while ($checkIn -ne $NULL) { | |
$pathToTest = $checkIn.fullname + '/.git' | |
if ((Test-Path $pathToTest) -eq $TRUE) { | |
return $TRUE | |
} else { | |
$checkIn = $checkIn.parent | |
} | |
} | |
return $FALSE | |
} | |
# Get the current branch | |
function gitBranchName { | |
$currentBranch = '' | |
git branch | foreach { | |
if ($_ -match "^\* (.*)") { | |
$currentBranch += $matches[1] | |
} | |
} | |
return $currentBranch | |
} | |
# Extracts status details about the repo | |
function gitStatus { | |
$untracked = $FALSE | |
$added = 0 | |
$modified = 0 | |
$deleted = 0 | |
$ahead = $FALSE | |
$aheadCount = 0 | |
$output = git status | |
$branchbits = $output[0].Split(' ') | |
$branch = $branchbits[$branchbits.length - 1] | |
$output | foreach { | |
if ($_ -match "^\#.*origin/.*' by (\d+) commit.*") { | |
$aheadCount = $matches[1] | |
$ahead = $TRUE | |
} | |
elseif ($_ -match "deleted:") { | |
$deleted += 1 | |
} | |
elseif (($_ -match "modified:") -or ($_ -match "renamed:")) { | |
$modified += 1 | |
} | |
elseif ($_ -match "new file:") { | |
$added += 1 | |
} | |
elseif ($_ -match "Untracked files:") { | |
$untracked = $TRUE | |
} | |
} | |
return @{"untracked" = $untracked; | |
"added" = $added; | |
"modified" = $modified; | |
"deleted" = $deleted; | |
"ahead" = $ahead; | |
"aheadCount" = $aheadCount; | |
"branch" = $branch} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment