Reputation: 21
After giving the Git command git status
I am getting working tree clean
instead of working directory clean
. How do I get to working directory clean?
Upvotes: 2
Views: 2557
Reputation: 7294
You'll have to downgrade your version of git
. Not authoritative, but this post mentions:
Git v2.9.1 changed the response from a clean git status to working tree clean instead of working directory clean; this change breaks clustergit for 2.9.1 users.
Authoritatively, the release notes for 2.9.1:
- "git status" used to say "working directory" when it meant "working tree".
Upvotes: 3