Skip to content

Instantly share code, notes, and snippets.

@inexorabletash
Created April 26, 2015 04:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save inexorabletash/8fb5fc6ae9e189e25026 to your computer and use it in GitHub Desktop.
Save inexorabletash/8fb5fc6ae9e189e25026 to your computer and use it in GitHub Desktop.
PowerShell Profile
# Custom prompt
function prompt {
write-host -NoNewLine -ForegroundColor Red $pwd
# Current git branch name
$branch = git rev-parse --abbrev-ref HEAD
if ($branch) {
write-host -NoNewLine -ForegroundColor Green (' [' + $branch + ']')
}
" PS> "
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment