Home > Article > Development Tools > How to use Gitee flowchart function
Gitee is a leading domestic code hosting platform and is increasingly popular among developers and enterprises. In addition to code hosting, Gitee also provides many other functions, such as Wiki, Issues, code cloud aggregation, etc. Today, we will share how to use the Gitee flowchart function.
Gitee flow chart is a very practical function in the Gitee platform. It can help developers better manage the project process, improve the efficiency of the project, and thus better complete the project. Let's take a look at how to use the Gitee flowchart function.
Step one: Log in to the Gitee platform and create a project
First, we need to log in to the Gitee platform. If you don't have a Gitee account yet, you can register one. After logging in, we need to create a project. You can click the "Create Project" button in the upper right corner of the Gitee homepage, or click the "New" button in the upper left corner of the Gitee warehouse page to create a new project.
Step 2: Create a flow chart
After creating the project, we enter the project homepage and click the "Wiki" tab. On the Wiki page, we can see the "Flowchart" label, click on it to create a flowchart. Click "New Flowchart" to start creating a new flowchart.
Step 3: Edit the flow chart
Editing the flow chart requires us to use a certain format, enter the code in the editing area, and Gitee will automatically convert the code into a flow chart. The following is a basic format, you can learn from it:
graph LR 开始-->流程1 流程1-->流程2 流程1-->流程3 流程2-->结束 流程3-->结束
The meaning of this code is: start to perform an operation, and then choose to continue to execute process 1 or process 3 according to the execution result. If process 1 is executed, Then according to the execution result, you can choose to continue executing process 2 or end it; if you execute process 3, it will end directly.
Enter tags in the editing area, and you will see the effect of the flow chart on the right. If you have multiple flowcharts to write, you can create multiple documents on the page, and each document corresponds to a flowchart for easy management and viewing.
Step 4: Save and share the flowchart
After editing the flowchart, we need to save the flowchart and share it with others. This step is very simple. Just click the "Save" button to save the flow chart to the Gitee platform. Then we can share the link with others so that they can also view and edit the flow chart.
Summary
Gitee flow chart is one of the very practical functions in the Gitee platform. It can help developers better manage the project process, improve the efficiency of the project, and thus better complete the project. . Editing flowcharts requires a certain format. Just enter the code in the editing area. If there are multiple flowcharts that need to be edited, you can create multiple documents on the page for easy management and viewing. Finally, we need to save the flowchart and share it with others.
The above is the detailed content of How to use Gitee flowchart function. For more information, please follow other related articles on the PHP Chinese website!