
常用命令
常用命令记录
丁丁打工记
这个作者很懒,什么都没留下…
展开
-
Git 常用命令记录
Git 常用命令 git config user.name // 查看用户名 git config user.email // 查看邮箱 git config --global user.name “name” // 修改用户名 git config --global user.email “email” // 修改邮箱 git config --global core.longpaths true // 解决文件名太长问题 git clone url -b branch // 拉取指定分支代码 git b原创 2020-06-16 13:34:23 · 243 阅读 · 0 评论 -
adb 常用命令记录
adb 常用命令记录 adb shell // 进入系统 adb shell ls // 查看设备文件夹 adb devices // 查看连接的设备 adb -s 设备名 shell // 进入指定设备系统 adb shell dumpsys battery // 查看系统电池服务 adb shell dumpsys wifi // 查看系统WIFI信息 adb shell dumpsys power // 查看系统电源相关信息 adb shell dumpsys telephony.registry原创 2020-11-09 16:40:36 · 228 阅读 · 0 评论