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?
Asked
Active
Viewed 2,526 times
2

Scott Weldon
- 9,673
- 6
- 48
- 67

Kitty2
- 21
- 1
- 3
-
2Please post a screenshot of git console; both the git status command and the result. – C. McCoy IV Oct 26 '16 at 16:23
-
They mean the same thing. "Working directory" was just the wrong string. – torek Oct 26 '16 at 19:24
1 Answers
3
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".

sfjac
- 7,119
- 5
- 45
- 69