Preparation
Refer to https://gitee.com/help/articles/4113 to register Gitee account.
Set your primary mail box in gitee settings https://gitee.com/profile/emails.
Sign your CLA in https://clasign.osinfra.cn/sign/Z2l0ZWUlMkZvcGVuZ2F1c3M=.
Prepare your git environment refering to https://gitee.com/help/articles/4107.
Understand blog format
The blog is written in markdown format. You can read https://gitee.com/opengauss/blog/blob/master/content/en/design/content_posts.md to get understand how the blog is designed.
The head includes the following information:
+++
title = "Sample Post"
date = "2020-03-03"
tags = ["Sample", "ABC", "cccc"]
archives = "2020-03"
author = "Blog Maintainer"
summary = "Just about everything you'll need to style in the theme: headings, paragraphs, blockquotes, tables, code blocks, and more."
+++
Here you can edit your blog.
Tips: you can copy content/_example/2020-03-03-sample-post.md to your folder and edit it.
Post your blog
The blog posting follows the pull request of Gitee.
Fork openGauss blog project https://gitee.com/opengauss/blog to your own gitee. Refer to https://gitee.com/help/articles/4122 for detailed guidance.
Clone the code to your local environment.
git clone https://gitee.com/<your-gitee-id>/blog
Create a branch
git checkout -b <branch-name>
Create a folder in the blog floder
cd content\post mkdir <your-gitee-id> cd <your-gitee-id> touch YEAR-MONTH-DAY-title.md
And You can put the resources in the same folder as your text file’s, and name the resources as
YEAR-MONTH-DAY-title-NN.MARKUP
Where the YEAR, MONTH, DAY, and title are the same as your blog file, and NN is the serial number of the pictures, like 01, 02 and so on. The MARKUP is the file extension, and for pictures it is recommended to use png. The following are one example.
2020-01-01-new-years-is-coming.md
2020-01-01-new-years-is-coming-01.png
2020-01-01-new-years-is-coming-02.gif
2020-01-01-new-years-is-coming-03.pdf
Commit your post
git add <file-path> git commit -m "<message>" git push origin <branch-name>:<branch-name>
Refer to https://gitee.com/help/articles/4122to submit your Pull Request
Wait for reviewing and merging.