You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@devlake.apache.org by ab...@apache.org on 2023/02/03 01:51:02 UTC

[incubator-devlake-website] 01/02: Updated the repo URL in development workflow

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

abeizn pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-devlake-website.git

commit 224c16e5fb063aacabee177787440e52fb5b59d3
Author: Aparna Soneja <ap...@gmail.com>
AuthorDate: Fri Feb 3 01:59:15 2023 +0530

    Updated the repo URL in development workflow
---
 community/make-contribution/development-workflow.md | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/community/make-contribution/development-workflow.md b/community/make-contribution/development-workflow.md
index c4ae689e9f..2671ede94d 100644
--- a/community/make-contribution/development-workflow.md
+++ b/community/make-contribution/development-workflow.md
@@ -21,7 +21,7 @@ This document shows the workflow of how to develop DevLake.
 ```sh
 mkdir -p ${WORKING_PATH}
 cd ${WORKING_PATH}
-# You can also use the url: git@github.com:merico-dev/lake.git
+# You can also use the url: github.com/apache/incubator-devlake
 # if your ssh configuration is proper
 git clone https://github.com/{user}/{repo}.git
 
@@ -37,8 +37,8 @@ git remote set-url --push upstream no_push
 Execute `git remote -v` and you'll see output like below:
 
 ```sh
-origin  git@github.com:merico-dev/lake.git (fetch)
-origin  git@github.com:merico-dev/lake.git (push)
+origin  github.com/apache/incubator-devlake.git (fetch)
+origin  github.com/apache/incubator-devlake.git (push)
 upstream        https://github.com/apache/incubator-devlake.git (fetch)
 upstream        no_push (push)
 ```