摘要:
Git的常用命令记录 1.与远程仓库建立连接,即关联一个远程库 git remote add origin git@server-name:path/repo-name.git; 2.查看当前分支 创建分支 切换分支 删除分支 git branch; 查看当前所有分支,分支前有*的为你当前所在的分支 阅读全文
摘要:
Linux ~ 查看日志的常用命令总结 1.tail ① tail -f test.log 实时显示test.log文件里的最尾部的内容,只要test.log更新就可以看到最新的文件内容。 ② tail -100f test.log 实时监控100行日志。 ③ tail -n 100 test.lo 阅读全文