質問

I have the following:

$ tree
.
├── bar
│   ├── foo.js
│   ├── foo.herp
│   ├── foo.derp
│   └── foo.py
├── bar.herp
└── baz.py

I want to use the following

git ls-files -- {} where {} is some sort of glob pattern

and I want it to return

bar/foo.js
bar/foo.py
baz.py
役に立ちましたか?

解決

You can provide any number of glob expressions after ls-files:

git ls-files -- '*.js' '*.py'

他のヒント

Nope. As of git version 2.20.1

git ls-files -- '**/*.js' '**/*.py'

Will return no files

git ls-files -- '**/*.js'

Will return all .js files in the repo

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top