新增:《合并两个Git仓库的历史提交记录》

This commit is contained in:
2022-07-06 22:06:57 +08:00
parent d44f0fd994
commit 83b8e8b12c
7 changed files with 121 additions and 1 deletions

View File

@@ -39,7 +39,8 @@ export default ({
// 侧边栏
sidebar: {
'/issues/': sidebarIssues()
'/issues/': sidebarIssues(),
'/fragments/': sidebarFragments()
}
}
})
@@ -49,6 +50,10 @@ function nav() {
{
text: 'Bug万象集',
link: '/issues/index'
},
{
text: '杂碎逆袭史',
link: '/fragments/index'
}
]
}
@@ -63,3 +68,13 @@ function sidebarIssues() {
}
]
}
function sidebarFragments() {
return [
{
items: [
{ text: '合并两个Git仓库的历史提交记录', link: '/fragments/2022/03/合并两个Git仓库的历史提交记录' }
]
}
]
}