实用的命令行记录

  • 重启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

相关推荐
Yang-Never2 天前
ADB->ADB宏控开关控制
adb
LKID体3 天前
mysql的my.cnf配置文件参数说明
数据库·mysql·adb
液态不合群3 天前
Mysql篇-语句执行计划详解(explain)
android·mysql·adb
无名前端小白4 天前
常用Adb 命令
adb
C_eeking4 天前
Ubuntu23.10下解决C语言调用mysql.h问题
c语言·mysql·adb
木古古184 天前
Ubuntu22.04 安装mysql8 无法修改端口及配置的问题 坑啊~~~~
adb
AlbertS4 天前
Windows下使用adb实现在模拟器中ping
android·windows·adb·ping·模拟器
冷白白5 天前
【MySQL】函数
android·数据库·mysql·adb
GOTXX6 天前
【MySQL】ubantu 系统 MySQL的安装与免密码登录的配置
linux·数据库·mysql·adb·ubantu
找藉口是失败者的习惯6 天前
Android adb 指令大全
android·adb