Submit Code
-
First, fork the upstream repository https://github.com/apache/streampark.git into your own repository.
-
Clone your repository to your local:
git clone https://github.com/<your-github-id>/streampark.git
-
Add remote repository address, name it upstream:
git remote add upstream https://github.com/apache/streampark.git
-
View repository:
git remote -v
At this time, there will be two repositories:
origin
(your own repository) andupstream
(remote repository).
-
Get/Update remote repository code:
git fetch upstream
-
Synchronize remote repository code to local repository:
git checkout origin/dev
git merge --no-ff upstream/dev -
If remote branch has a new branch such as
dev-1.0
, you need to synchronize this branch to the local repository:git checkout -b dev-1.0 upstream/dev-1.0
git push --set-upstream origin dev-1.0 -
After modifying the code locally, submit it to your own repository:
git commit -m 'commit content'
git push -
Submit changes to the remote repository
-
On the github page, click "New pull request".
-
Select the modified local branch and the branch you want to merge with the past, click "Create pull request".
-
Then the community Committers will do CodeReview, and then he will discuss some details (including design, implementation, performance, etc.) with you. When everyone on the team is satisfied with this modification, the commit will be merged into the dev branch
-
Congratulations! You have become a contributor to Apache StreamPark!