摘要:
//拉取远程代码到本地,更新本地分支的代码 //每次提交代码前,一定确认本地代码是最新代码 git pull //查看git工作区的文件详情 git status //把要提交的代码文件添加到工作区,文件路径可通过 “git status”查看 git add . 或者 git add <文件路径> 阅读全文
摘要:
1. 常用命令: adb devices #查看连接设备adb -s cf27456f shell # 指定连接设备使用命令adb install test.apk # 安装应用adb install -r demo.apk #安装apk 到sd 卡:adb uninstall cn.com 阅读全文