2019年12月17日
摘要: 示例分支:master 、 dev 1. 把 dev 分支上的新内容合并到 master 上 先切换分支到master git checkout master 合并操作 git merge dev 或者 git rebase dev 2. git merge & git rebase 的区别 合并前 阅读全文
posted @ 2019-12-17 18:24 Uzhizhe 阅读(186) 评论(0) 推荐(0) 编辑
摘要: Java 的异常类图结构 两种异常的分类方式: 第一种:运行时异常(RuntimeException)、非运行时异常 (Exception 下除了RuntimeException及其子类的其他异常) 第二种:受检异常(非运行时异常)、非受检异常(RuntimeException和Error) Spr 阅读全文
posted @ 2019-12-17 18:04 Uzhizhe 阅读(1662) 评论(0) 推荐(1) 编辑
摘要: Scp 上传下载命令 1、从服务器上下载文件到本地 scp username@servername:/path/filename /var/www/local_dir(本地目录) 例如:scp root@192.168.0.101:/var/www/test.txt 作用:把192.168.0.10 阅读全文
posted @ 2019-12-17 10:33 Uzhizhe 阅读(640) 评论(0) 推荐(0) 编辑