You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dolphinscheduler.apache.org by li...@apache.org on 2022/11/26 15:42:21 UTC

[dolphinscheduler] branch davidzollo-patch-1 created (now 2ae07abf1b)

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

lidongdai pushed a change to branch davidzollo-patch-1
in repository https://gitbox.apache.org/repos/asf/dolphinscheduler.git


      at 2ae07abf1b [Improvement][doc] correct error in CONTRIBUTING.md

This branch includes the following new commits:

     new 2ae07abf1b [Improvement][doc] correct error in CONTRIBUTING.md

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[dolphinscheduler] 01/01: [Improvement][doc] correct error in CONTRIBUTING.md

Posted by li...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

lidongdai pushed a commit to branch davidzollo-patch-1
in repository https://gitbox.apache.org/repos/asf/dolphinscheduler.git

commit 2ae07abf1bd62e59a56cc3c9f526c76c862bb327
Author: David <da...@gmail.com>
AuthorDate: Sat Nov 26 23:42:15 2022 +0800

    [Improvement][doc] correct error in CONTRIBUTING.md
    
    some pictures don't exist, the content of the official website is complete
---
 CONTRIBUTING.md | 100 +-------------------------------------------------------
 1 file changed, 1 insertion(+), 99 deletions(-)

diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index c5802c5d01..6c9bf09d83 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -1,99 +1 @@
-# How To Contribute
-
-Start by forking the dolphinscheduler GitHub repository, make changes in a branch and then send a pull request.
-
-## Set up your dolphinscheduler GitHub Repository
-
-There are three branches in the remote repository currently:
-
-- `master` : normal delivery branch. After the stable version is released, the code for the stable version branch is merged into the master branch.
-
-- `dev` : daily development branch. The daily development branch, the newly submitted code can pull requests to this branch.
-
-- `x.x.x-release` : the stable release version.
-
-So, you should fork the `dev` branch.
-
-After forking the [dolphinscheduler upstream source repository](https://github.com/apache/dolphinscheduler/fork) to your personal repository, you can set your  personal development environment.
-
-```sh
-cd <your work direcotry>
-git clone <your personal forked dolphinscheduler repo>
-cd dolphinscheduler
-```
-
-## Set git remote as `upstream`
-
-Add remote repository address, named upstream
-
-```sh
-git remote add upstream https://github.com/apache/dolphinscheduler.git
-```
-
-View repository:
-
-```sh
-git remote -v
-```
-
-There will be two repositories at this time: origin (your own warehouse) and upstream (remote repository)
-
-Get/update remote repository code (already the latest code, skip it).
-
-```sh
-git fetch upstream
-```
-
-Synchronize remote repository code to local repository
-
-```sh
-git checkout origin/dev
-git merge --no-ff upstream/dev
-```
-
-If remote branch has a new branch `dev-1.0`, you need to synchronize this branch to the local repository, then push to your own repository.
-
-```sh
-git checkout -b dev-1.0 upstream/dev-1.0
-git push --set-upstream origin dev-1.0
-```
-
-## Create your feature branch
-
-Before making code changes, make sure you create a separate branch for them.
-
-```sh
-git checkout -b <your-feature-branch> dev
-```
-
-## Commit changes
-
-After modifying the code locally, submit it to your own repository:
-
-```sh
-git commit -m 'information about your feature'
-```
-
-## Push to the branch
-
-Push your locally committed changes to the remote origin (your fork).
-
-```sh
-git push origin <your-feature-branch>
-```
-
-## Create a pull request
-
-After submitting changes to your remote repository, you should click on the new pull request On the following github page.
-
-<p align = "center">
-<img src = "http://geek.analysys.cn/static/upload/221/2019-04-02/90f3abbf-70ef-4334-b8d6-9014c9cf4c7f.png" width ="60%"/>
-</p>
-
-Select the modified local branch and the branch to merge past to create a pull request.
-
-<p align = "center">
-<img src = "http://geek.analysys.cn/static/upload/221/2019-04-02/fe7eecfe-2720-4736-951b-b3387cf1ae41.png" width ="60%"/>
-</p>
-
-Next, the administrator is responsible for **merging** to complete the pull request.
+Please refer to the contribution document,https://dolphinscheduler.apache.org/en-us/docs/latest/user_doc/contribute/join/contribute.html