From c896df8056548de2fb9156932a015be01be36dc9 Mon Sep 17 00:00:00 2001 From: skylines <34996528+gtk96@users.noreply.github.com> Date: Fri, 22 Sep 2023 10:22:31 +0800 Subject: [PATCH] [hotfix][docs] Fix the abnormal display of pictures (#2513) --- .../{check-branch.png => check_branch.png} | Bin docs/content/about.md | 26 +++++++++--------- 2 files changed, 13 insertions(+), 13 deletions(-) rename docs/_static/fig/contribute_guidance/{check-branch.png => check_branch.png} (100%) diff --git a/docs/_static/fig/contribute_guidance/check-branch.png b/docs/_static/fig/contribute_guidance/check_branch.png similarity index 100% rename from docs/_static/fig/contribute_guidance/check-branch.png rename to docs/_static/fig/contribute_guidance/check_branch.png diff --git a/docs/content/about.md b/docs/content/about.md index 3ca98a6bb..9646e1d2b 100644 --- a/docs/content/about.md +++ b/docs/content/about.md @@ -298,21 +298,21 @@ The dependencies are now available in your local `.m2` repository. 2. Fork Flink CDC project to your GitHub repositories ![fork](/_static/fig/contribute_guidance/fork.png "fork") 3. Clone and compile your Flink CDC project -```bash -git clone https://github.com/your_name/flink-cdc-connectors.git -cd flink-cdc-connectors -mvn clean install -DskipTests -``` + ```bash + git clone https://github.com/your_name/flink-cdc-connectors.git + cd flink-cdc-connectors + mvn clean install -DskipTests + ``` 4. Check to a new branch and start your work -```bash -git checkout -b my_feature --- develop and commit -``` -![check_branch](/_static/fig/contribute_guidance/check_branch.png "check_branch") + ```bash + git checkout -b my_feature + -- develop and commit + ``` + ![check_branch](/_static/fig/contribute_guidance/check_branch.png "check_branch") 5. Push your branch to your github -```bash -git push origin my_feature -``` + ```bash + git push origin my_feature + ``` 6. Open a PR to https://github.com/ververica/flink-cdc-connectors ![open_pr](/_static/fig/contribute_guidance/open_pr.png "open_pr")