git ls-files: showing blob files only

260 Views Asked by At

How do I use git ls-files to show files only(i.e., excluding directories)? For instance, I want to remove asd1 and asd2 from the following output:

$> git ls-files                         
asd1/bar
asd1/foo
asd2/bar
base.html
index.html
list.html

Is there any way to do this without involving string manipulation?

2

There are 2 best solutions below

1
On

That's the kind of thing that pipes are used for:

 git ls-files | while read filename; do basename $filename; done

I could also go this route:

git ls-files | sed 's/.*\///'
1
On

Ok I finally got it working...I leave the answer hoping will be save some else time:

git ls-tree --name-only -r HEAD | grep -v -w -e "$(git ls-tree -d --name-only HEAD)"