摘要: Git 如何迁移仓库并保留 commit 记录 一、作用 把在 A 托管平台的仓库完全的迁移到 B 托管平台,保留 commit 历史记录。 二、场景 将 Gitlab 上的仓库迁移到 GitHub将 Coding 上的仓库迁移到 GitHub将 Gitee 上的仓库迁移到 GitHub……迁移前后 阅读全文
posted @ 2023-05-11 11:46 华了个华 阅读(1841) 评论(0) 推荐(0)
摘要: 方法: String result =artist.stream().map(Art::getName).collect(Collectors.joining(", ", "[", "]")); (注:joining(CharSequence delimiter, CharSequence pref 阅读全文
posted @ 2023-05-11 09:30 华了个华 阅读(154) 评论(0) 推荐(0)
摘要: 第一种: 使用partitioningBy 收集器 例子:Map<Boolean, List<Art>> = artist.stream.collect(partitioningBy(x-> x.isSolo())); 根据true, false 分类,满足条件的返回到true,不满足的返回到fal 阅读全文
posted @ 2023-05-11 09:17 华了个华 阅读(58) 评论(0) 推荐(0)