上一页 1 ··· 61 62 63 64 65 66 67 68 69 ··· 95 下一页
摘要: 一些常用简写命令: git st # git status git ci # git commit git br # git branch git co # git checkout git mg # git merge git line # git log --oneline 当然,你也可以直接在 阅读全文
posted @ 2023-06-13 10:50 悟透 阅读(1091) 评论(0) 推荐(0)
摘要: 一、开启USB调试: 1.给机顶盒链接网络,有线无线都可以。 2.按遥控器上 设置 ,提示输入密码; 常见的密码:(如果下面密码都不对,可以给客服打电话询问) 0000 6321 10086 10010 10000 3.选择 其他设置 连续按遥控器方向右键6次(正常是5次,但是有一次是跳到右边窗口, 阅读全文
posted @ 2023-06-10 18:03 悟透 阅读(7016) 评论(0) 推荐(0)
摘要: ubuntu下使用git提交代码时,git commit时默认的编辑器是nano, 用惯了vim,所以如果修改默认编辑器,可以这样解决: 编辑 .git/config 在 core 这块,加入 editor = vim 另一种方法,全局都使用 vim 编辑器: git config --global 阅读全文
posted @ 2023-06-09 16:52 悟透 阅读(526) 评论(0) 推荐(0)
摘要: git commit -m ‘注释内容’ 假设,注释内容写错了,可以不用撤回提交,用 --amend 参数修改 git commit --amend 进入编辑模式,修改完保存即可 参考: https://blog.csdn.net/w_p_wyd/article/details/126028094 阅读全文
posted @ 2023-06-09 16:50 悟透 阅读(118) 评论(0) 推荐(0)
摘要: 不废话,直接上命令: sudo apt-get install libpcap-dev 阅读全文
posted @ 2023-06-09 12:19 悟透 阅读(69) 评论(0) 推荐(0)
摘要: 一、模拟环境 test 目录下有两个文件夹,a 和 b 里面分别放着 aa.txt 和 bb.txt 绝对路径: ~/test/a/aa.txt ~/test/b/bb.txt 二、命令行启动 vscode 对比 $ code --diff a/aa.txt b/bb.txt 三、使用 vscode 阅读全文
posted @ 2023-06-08 17:16 悟透 阅读(2677) 评论(0) 推荐(0)
摘要: 错误内容: /home/qrry/gine/missing: 行 81: automake-1.16: 未找到命令 WARNING: 'automake-1.16' is missing on your system. You should only need it if you modified 阅读全文
posted @ 2023-06-08 14:04 悟透 阅读(2758) 评论(0) 推荐(0)
摘要: 一、 简介 & 官网 简介:CppCheck是一个静态代码检查工具,支持c/ c++代码;作为编译器的一种补充检查, CppCheck对产品的源代码执行严格的逻辑检查。 官网:http://cppcheck.net 二、安装环境 安装 gcc/g++ sudo apt-get install gcc 阅读全文
posted @ 2023-06-07 11:12 悟透 阅读(1335) 评论(0) 推荐(0)
摘要: 一、介绍 Sonar是一个用于代码质量管理的开源平台,用于管理代码的质量,通过插件形式可以支持二十几种语言的代码质量检测,通过多个维度的检查了快速定位代码中潜在的或者明显的错误。 SonarQube与Sonar区别: SonarQube是sonar的服务端,相当于一个web服务器中的tomcat,用 阅读全文
posted @ 2023-06-06 09:32 悟透 阅读(5876) 评论(0) 推荐(0)
摘要: mm 全称 MultiMail, 是一个离线邮件客户端 安装命令: sudo apt-get install multimail -- 阅读全文
posted @ 2023-05-25 17:01 悟透 阅读(210) 评论(0) 推荐(0)
上一页 1 ··· 61 62 63 64 65 66 67 68 69 ··· 95 下一页