Skip to content

Commit 9030638

Browse files
committed
Add Gitブランチフロー規約
1 parent bae070e commit 9030638

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+1447
-1
lines changed

.vitepress/config.mjs

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,13 @@ const links = {
2929
link: "/documents/forDB/postgresql_guidelines.html",
3030
},
3131
],
32+
"/documents/forGitBranch/": [
33+
{ text: "Introduction", link: "/documents/forGitBranch/" },
34+
{
35+
text: "Gitブランチフロー規約",
36+
link: "/documents/forGitBranch/git_branch_standards.html",
37+
},
38+
],
3239
"/documents/forMarkdown/": [
3340
{ text: "Introduction", link: "/documents/forMarkdown/" },
3441
{

.vitepress/theme/style.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@
1313
#fff 30%,
1414
#e5004f
1515
);
16+
/* 背景が透過である画像が、ダークモードで視認性が下がるための対応 */
17+
.img-bg-transparent img {
18+
filter: invert(1);
19+
}
1620
}
1721

1822
/* ヒーロー画像を透過させる */

build-resources-with-pandoc.sh

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,3 +58,9 @@ cd ${ROOT_DIR}/documents/forCodeReview
5858

5959
pandoc ./code_review.md -s --self-contained --number-sections --toc -t html5 -c ${CSS_PATH} -o ${RESOURCES_DIR}/コードレビューガイドライン.html
6060
pandoc ./code_review.md --toc --reference-doc=${STYLE_DOCX_PATH} -s -o ${RESOURCES_DIR}/コードレビューガイドライン.docx
61+
62+
# Git
63+
cd ${ROOT_DIR}/documents/forGitBranch
64+
65+
pandoc ./git_branch_standards.md -s --self-contained --number-sections --toc -t html5 -c ${CSS_PATH} -o ${RESOURCES_DIR}/Gitブランチフロー規約.html
66+
pandoc ./git_branch_standards.md --toc --reference-doc=${STYLE_DOCX_PATH} -s -o ${RESOURCES_DIR}/Gitブランチフロー規約.docx

documents/forGitBranch/git_branch_standards.md

Lines changed: 1064 additions & 0 deletions
15.5 KB
15.4 KB
24.2 KB
50.8 KB
28.2 KB
24.8 KB

0 commit comments

Comments
 (0)