Friday, April 17, 2015

PoshGit

I'm using PoshGit (Powershell git client) as my command line git tool. Sometimes when a repository has thousand of files the prompt status information makes it very slow.

Fortunately the promt status is possible to turn of, but the problem is that I never remember how, so i'll post it here for my self to remember and possibly help others.

At the prompt write: $GitPromptSettings.EnableFileStatus = $false and you're good to go.

The setting is not persisted cross sessions.