github 的仓库没了,没人发现吗?
GitHub 上的 b3log 组织去哪了?
相关帖子
-
88250 • • 1 • 2 赞同订阅者 MOD
以前 B3log 组织的仓库现在已经全部迁移到我和 V 的个人账号下了 https://github.com/88250 https://github.com/Vanessa219
@dexter @jamesyangget 定个目标,超过 1W 星的仓库将从 GitHub 毕业,迁移到自建的代码库上,届时我打算搞一套深度整合社区的仓库系统。
-
hefeng • • 1 • 3 赞同
我知道谁举报的
-
nobt • • 2 赞同
我举报那个 B 了,我看看 Github 举报真的如此给力吗
-
- 其他回帖
-
以前 B3log 组织的仓库现在已经全部迁移到我和 V 的个人账号下了 https://github.com/88250 https://github.com/Vanessa219
@dexter @jamesyangget 定个目标,超过 1W 星的仓库将从 GitHub 毕业,迁移到自建的代码库上,届时我打算搞一套深度整合社区的仓库系统。
1 回复 -
简单的写了个导出 issue 的代码,对于我们和大家而言,最重要的就是代码和 issue 了。还好这些都在 😄
var count = 172 var project = 'vditor' var targetName = 'vanessa219' var token = '?access_token=xxx' var j = 0 for (var i = j + 1; i <= count; i++) { setTimeout(()=>{ j++ fetch(`https://api.github.com/repos/b3log/${project}/issues/${j}${token}`).then(response=>response.json()).then(res=>{ if (res.state !== 'closed') { newIssue(res) } }) }, (i - j) * 2000) } var newIssue = (res)=>{ var data = { 'title': res.title, 'body': res.body || res.title } fetch(`https://api.github.com/repos/${targetName}/${project}/issues${token}`, { body: JSON.stringify(data), method: 'POST', headers: { 'content-type': 'application/json' }, }).then(response=>response.json()).then(res=>{ console.log(`new issue:${res.url}`) }) }
- 查看全部回帖