latvian
latvian

Reputation: 3225

Zsh Slow in Dir of Git Repo

I am using zsh shell and it has become very slow running any commands such as 'ls' 'cd' in directories that are Git Repo. In bash it works fine and fast. I also notice that the title of shell displays 'git' with spinning wheel on side. it appears "git" is called after executing 'ls', 'cd' not giving the control back and making it extremely slow ...and painful:)

I upgraded the latest Git 2.1.2, zsh 5.0.7. I am on Mac 10.9.2

How would you go about troubleshooting zsh shell? Thank You for help

Upvotes: 0

Views: 1515

Answers (1)

Francisco
Francisco

Reputation: 4110

You likely have either:

Likely, the easiest way to find it out is to start zsh with zsh -x and then move into your git repositories. It should show you what is going on.

Upvotes: 1

Related Questions