2

I don't have enough reputation to comment there, so I have to ask a new question here.

I can use cmd //c tree to use Windows' tree in git-bash for Windows. It only shows directory tree. If I want it also display files, how should I do it?

I tried cmd //c tree /F, but I get Invalid drive specification error.

hxin
  • 133

1 Answers1

1

Try one (or both) of these variations:

cmd //c tree //F

or

cmd //c "tree /F"

TOOGAM
  • 16,486