0

I'm trying to get a list of all the files that have been checked into a Git repository. Unfortunately, all the solutions I can find to this assume Linux (or similar), but I'm using Windows. How do I do it from a Windows shell?

digitig
  • 1,989
  • 3
  • 25
  • 45
  • Possible duplicate of [List files in local git repo?](https://stackoverflow.com/questions/8533202/list-files-in-local-git-repo) – Et7f3XIV Mar 05 '18 at 10:06

1 Answers1

0
git ls-tree --full-tree -r HEAD

see List files in local git repo?

hth

Community
  • 1
  • 1
desmond
  • 11
  • 3