This is an automated email from the ASF dual-hosted git repository.

albumenj pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/dubbo-website.git


The following commit(s) were added to refs/heads/master by this push:
     new cdf2f9f494d fix dubbo samples branch name fixes #3103 (#3105)
cdf2f9f494d is described below

commit cdf2f9f494d61f0314cbf98028e92c33bcb9d858
Author: Mohamed Mushraf <[email protected]>
AuthorDate: Tue Mar 11 08:03:41 2025 +0530

    fix dubbo samples branch name fixes #3103 (#3105)
---
 content/en/blog/integration/dubbo-triple-with-apisix-gateway.md         | 2 +-
 content/en/blog/integration/how-to-proxy-dubbo-in-apache-apisix.md      | 2 +-
 content/en/overview/mannual/java-sdk/quick-start/starter.md             | 2 +-
 .../en/overview/mannual/java-sdk/tasks/deploy/deploy-on-kubernetes.md   | 2 +-
 content/en/overview/mannual/java-sdk/tasks/deploy/deploy-on-vm.md       | 2 +-
 content/zh-cn/blog/integration/dubbo-triple-with-apisix-gateway.md      | 2 +-
 content/zh-cn/blog/integration/how-to-proxy-dubbo-in-apache-apisix.md   | 2 +-
 .../overview/mannual/java-sdk/tasks/deploy/deploy-on-kubernetes.md      | 2 +-
 content/zh-cn/overview/mannual/java-sdk/tasks/deploy/deploy-on-vm.md    | 2 +-
 9 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/content/en/blog/integration/dubbo-triple-with-apisix-gateway.md 
b/content/en/blog/integration/dubbo-triple-with-apisix-gateway.md
index ee91c3f6d2b..914e01f9afc 100644
--- a/content/en/blog/integration/dubbo-triple-with-apisix-gateway.md
+++ b/content/en/blog/integration/dubbo-triple-with-apisix-gateway.md
@@ -62,7 +62,7 @@ dubbo:
 Download the source code:
 
 ```shell
-$ git clone -b main --depth 1 https://github.com/apache/dubbo-samples
+$ git clone -b master --depth 1 https://github.com/apache/dubbo-samples
 $ cd 
dubbo-samples/2-advanced/dubbo-samples-gateway/dubbo-samples-gateway-apisix/dubbo-samples-gateway-apisix-triple
 ```
 
diff --git a/content/en/blog/integration/how-to-proxy-dubbo-in-apache-apisix.md 
b/content/en/blog/integration/how-to-proxy-dubbo-in-apache-apisix.md
index 78c0251280d..3b0c66a339d 100644
--- a/content/en/blog/integration/how-to-proxy-dubbo-in-apache-apisix.md
+++ b/content/en/blog/integration/how-to-proxy-dubbo-in-apache-apisix.md
@@ -118,7 +118,7 @@ In the above code, `ApisixServiceImpl` will print the 
received `httpRequestConte
 In the `dubbo-samples-gateway-apisix-dubbo` directory, run the following 
command to start the application (or choose to start the application using an 
IDE):
 
 ```shell
-$ git clone -b main --depth 1 https://github.com/apache/dubbo-samples
+$ git clone -b master --depth 1 https://github.com/apache/dubbo-samples
 $ cd 
dubbo-samples/2-advanced/dubbo-samples-gateway/dubbo-samples-gateway-apisix/dubbo-samples-gateway-apisix-dubbo
 
 $ mvn compile exec:java 
-Dexec.mainClass="org.apache.dubbo.samples.gateway.apisix.dubbo.provider.ProviderApplication"
diff --git a/content/en/overview/mannual/java-sdk/quick-start/starter.md 
b/content/en/overview/mannual/java-sdk/quick-start/starter.md
index a72adbaadd9..69ae8670b90 100644
--- a/content/en/overview/mannual/java-sdk/quick-start/starter.md
+++ b/content/en/overview/mannual/java-sdk/quick-start/starter.md
@@ -21,7 +21,7 @@ Create a Dubbo microservice application by accessing <a 
href="https://start.dubb
 You can also download the official pre-prepared sample project directly:
 
 ```shell
-$ git clone -b main --depth 1 https://github.com/apache/dubbo-samples
+$ git clone -b master --depth 1 https://github.com/apache/dubbo-samples
 $ cd dubbo-samples/11-quickstart
 ````
 {{% /alert %}}
diff --git 
a/content/en/overview/mannual/java-sdk/tasks/deploy/deploy-on-kubernetes.md 
b/content/en/overview/mannual/java-sdk/tasks/deploy/deploy-on-kubernetes.md
index 94700151d12..c726f004e29 100644
--- a/content/en/overview/mannual/java-sdk/tasks/deploy/deploy-on-kubernetes.md
+++ b/content/en/overview/mannual/java-sdk/tasks/deploy/deploy-on-kubernetes.md
@@ -30,7 +30,7 @@ We still take the project in [Quick Start]() as an example to 
demonstrate the sp
 
 First, clone the sample project locally:
 ```shell
-$ git clone -b main --depth 1 https://github.com/apache/dubbo-samples
+$ git clone -b master --depth 1 https://github.com/apache/dubbo-samples
 ````
 
 Switch to the example directory:
diff --git a/content/en/overview/mannual/java-sdk/tasks/deploy/deploy-on-vm.md 
b/content/en/overview/mannual/java-sdk/tasks/deploy/deploy-on-vm.md
index 7631c8e2863..306fc8e02f7 100644
--- a/content/en/overview/mannual/java-sdk/tasks/deploy/deploy-on-vm.md
+++ b/content/en/overview/mannual/java-sdk/tasks/deploy/deploy-on-vm.md
@@ -21,7 +21,7 @@ We will continue to use the project in [Quick Start]() as an 
example to demonstr
 
 Clone the sample project locally:
 ```shell
-$ git clone -b main --depth 1 https://github.com/apache/dubbo-samples
+$ git clone -b master --depth 1 https://github.com/apache/dubbo-samples
 ````
 
 Switch to the sample directory:
diff --git a/content/zh-cn/blog/integration/dubbo-triple-with-apisix-gateway.md 
b/content/zh-cn/blog/integration/dubbo-triple-with-apisix-gateway.md
index cb147591fbc..bdbb97cc543 100644
--- a/content/zh-cn/blog/integration/dubbo-triple-with-apisix-gateway.md
+++ b/content/zh-cn/blog/integration/dubbo-triple-with-apisix-gateway.md
@@ -62,7 +62,7 @@ dubbo:
 下载源码:
 
 ```shell
-$ git clone -b main --depth 1 https://github.com/apache/dubbo-samples
+$ git clone -b master --depth 1 https://github.com/apache/dubbo-samples
 $ cd 
dubbo-samples/2-advanced/dubbo-samples-gateway/dubbo-samples-gateway-apisix/dubbo-samples-gateway-apisix-triple
 ```
 
diff --git 
a/content/zh-cn/blog/integration/how-to-proxy-dubbo-in-apache-apisix.md 
b/content/zh-cn/blog/integration/how-to-proxy-dubbo-in-apache-apisix.md
index b715b624b50..93690c7d03f 100644
--- a/content/zh-cn/blog/integration/how-to-proxy-dubbo-in-apache-apisix.md
+++ b/content/zh-cn/blog/integration/how-to-proxy-dubbo-in-apache-apisix.md
@@ -120,7 +120,7 @@ public class ApisixServiceImpl implements ApisixService {
 在 `dubbo-samples-gateway-apisix-dubbo` 目录,运行以下命令启动应用(或者选择使用 IDE 启动应用):
 
 ```shell
-$ git clone -b main --depth 1 https://github.com/apache/dubbo-samples
+$ git clone -b master --depth 1 https://github.com/apache/dubbo-samples
 $ cd 
dubbo-samples/2-advanced/dubbo-samples-gateway/dubbo-samples-gateway-apisix/dubbo-samples-gateway-apisix-dubbo
 
 $ mvn compile exec:java 
-Dexec.mainClass="org.apache.dubbo.samples.gateway.apisix.dubbo.provider.ProviderApplication"
diff --git 
a/content/zh-cn/overview/mannual/java-sdk/tasks/deploy/deploy-on-kubernetes.md 
b/content/zh-cn/overview/mannual/java-sdk/tasks/deploy/deploy-on-kubernetes.md
index d2b832612c9..4dea13ad528 100644
--- 
a/content/zh-cn/overview/mannual/java-sdk/tasks/deploy/deploy-on-kubernetes.md
+++ 
b/content/zh-cn/overview/mannual/java-sdk/tasks/deploy/deploy-on-kubernetes.md
@@ -31,7 +31,7 @@ $ dubboctl install --profile=demo
 
 首先,克隆示例项目到本地:
 ```shell
-$ git clone -b main --depth 1 https://github.com/apache/dubbo-samples
+$ git clone -b master --depth 1 https://github.com/apache/dubbo-samples
 ````
 
 切换到示例目录:
diff --git 
a/content/zh-cn/overview/mannual/java-sdk/tasks/deploy/deploy-on-vm.md 
b/content/zh-cn/overview/mannual/java-sdk/tasks/deploy/deploy-on-vm.md
index 60ac4222f65..c7d227b568f 100644
--- a/content/zh-cn/overview/mannual/java-sdk/tasks/deploy/deploy-on-vm.md
+++ b/content/zh-cn/overview/mannual/java-sdk/tasks/deploy/deploy-on-vm.md
@@ -22,7 +22,7 @@ working_in_progress: true
 
 克隆示例项目到本地:
 ```shell
-$ git clone -b main --depth 1 https://github.com/apache/dubbo-samples
+$ git clone -b master --depth 1 https://github.com/apache/dubbo-samples
 ````
 
 切换到示例目录:

Reply via email to