git search files

吃可爱长大的小学妹 提交于 2020-01-13 17:09:35

### find all *.pyc files in all commits 

 git log --all --name-only --pretty=oneline    *.pyc

### find all *.jpg files in all commits 

$ git ls-files   *.jpg

prebuilts/go/linux-x86/doc/gopher/pencil/gopherhat.jpg
prebuilts/go/linux-x86/doc/gopher/pencil/gopherhelmet.jpg
prebuilts/go/linux-x86/doc/gopher/pencil/gophermega.jpg
prebuilts/go/linux-x86/doc/gopher/pencil/gopherrunning.jpg
prebuilts/go/linux-x86/doc/gopher/pencil/gopherswim.jpg
prebuilts/go/linux-x86/doc/gopher/pencil/gopherswrench.jpg
sdk/apps/NotificationStudio/res/drawable-hdpi/romain.jpg
sdk/apps/NotificationStudio/res/drawable-nodpi/romainguy_rockaway.jpg

 

## ### find all *.py files and list all commited id 

$ git rev-list --all  --graph   --pretty=oneline       *.pyc
* 012c41d679b6aef5401f3f39add42b24d6566d18 Update Setting/Display
| * eab47730bbb42b4f141a3973707bd6d707c98c46 android-7.1.2_r11 NHG47L  
|/
| * 9cf39e86fb76e8cd45c7530b6a42064fc635e4d3 Init Firefly-RK3399/AIO-3399J Android8.1 SDK
| | * 741a5d106a8fec80bd3356376f76b9ce935a8906 RK3399 Android8.1_SDK v2.10_20180823 (dee361e6)
| |/
| * 87a12e841702f84b66a581af7cd6b99ddbee4a37 OPM6.171019.030.B1 android-8.1.0_r33       Oreo    Nexus 6P, Nexus 5X2018-06-05 OPM4.171019.021.E1 android-8.1.0_r32     Oreo    Pixel 2 XL, Pixel 22018-06-05
|/
* c854df96d10563a6cf684fd3c51f636984129d35 Aosp Build name N6F26Q       Tag android-7.1.1_r13   Nougat  Nexus 6 
 

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!