git,svn 使用
git 常用命令
提交
提交到master
git add .
git commit -s -m “message”
git push origin master
提交到master
git add .
git commit -s -m “message”
git push origin master
AS 插件 ADB IDEA
pm 是 packagemanager 缩写, am 是 activitymanager 缩写
Android 调试桥 (adb)
awesome-adb
adb shell dumpsys activity
当前显示的 activity ,用 findstr 或 grep 过滤
adb shell dumpsys activity | findstr “mFocusedActivity”
效果等同
adb shell “dumpsys activity | grep mFocusedActivity”
8.0以上用
adb shell dumpsys activity | findstr “mResumedActivity”
| |
| |
输出:Hi, kalaqiae! You have 10 new messages.
%d (表示整数)
%f (表示浮点数)
%s (表示字符串)
先上图
