实用的命令行记录

  • 重启system_server

    adb shell "stop,start"

  • 获取当前手机所有feature

    adb shell pm list features

  • dump某个安装包信息

    adb shell dumpsys package com.test.demo

  • 查看安装包AndroidManifest配置

    aapt dump xmltree xxx.apk AndroidManifest.xml 
    
  • 查看某个安装包的安装路径

    adb shell pm path 包名
    例如:查看permissioncontroller
    adb shell pm path com.android.permissioncontroller

  • 查看安卓系统提供了哪些 Unix 命令行工具

    adb shell ls /system/bin

git 常用命令

  • git切换新分支,并同步远程分支

    git checkout -b newBranch  origin/newBranch
    
  • 推送代码到gerrit服务器

    git push origin refs/heads/localBranch:refs/for/romoteBranch
    或者
    git push origin HEAD:refs/for/romoteBranch

相关推荐
小兜全糖(xdqt)5 小时前
mysql数据同步到sql server
mysql·adb
帅得不敢出门1 天前
安卓设备adb执行AT指令控制电话卡
android·adb·sim卡·at指令·电话卡
鬼才血脉1 天前
docker+mysql配置
mysql·adb·docker
CircleMouse1 天前
MySQL8完全卸载方法-Win10系统
adb
小小哭包1 天前
MySQL日期时间函数大全
android·adb
ShuQiHere2 天前
【ShuQiHere】️`adb kill-server` 和 `adb start-server` 命令的作用
adb
ShuQiHere2 天前
【ShuQiHere】️ 深入了解 ADB(Android Debug Bridge):您的 Android 开发利器!
android·adb
fighting_sunnyGirl3 天前
mac端mumu模拟器adb识别不了问题
macos·adb
D@.4 天前
如何将MySQL彻底卸载干净
数据库·mysql·adb·方法·彻底删除
CYRUS STUDIO4 天前
adb 远程调试,手动修改 adb 调试授权信息
android·adb·调试