Posh Git shows the current branch and the state of files in powershell prompt
It's a set of PowerShell scripts that gives Git integration in PowerShell prompt.
https://github.com/dahlbyk/posh-git
The first thing you notice once you install it, is that it can show the current branch and the state of files, additions, modifications, and deletions within.
Another nice feature is tab completion.
For example,
git ch<tab> --> git checkout
You can install it via PsGet
Install-Module posh-git
Comments