Kitty2
Kitty2

Reputation: 21

How to get from working tree clean to working directory clean

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

Answers (1)

sfjac
sfjac

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

Related Questions