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?
That's the kind of thing that pipes are used for:
I could also go this route: