This document is the best practice guide that contains the rules to follow when working with AsyncAPI repositories.
AsyncAPI uses a fork model for all community members, including maintainers. In this model, you push changes to your own working copy of the original (upstream
) repository, and then create one or more pull requests (PRs) to incorporate changes from your fork to upstream
. This unified workflow allows both members and external contributors to contribute through the same process, keeping the main repository branches clean.
Each contributor and maintainer in AsyncAPI must follow this workflow:
- Work on forked repositories.
- Create branches on the fork.
- Avoid working directly on the
master
branch of the fork. - Create pull requests from the fork to the upstream repository.
- On GitHub, navigate to the AsyncAPI repository you want to fork.
- In the top-right corner of the page, click Fork.
- Under Owner, select the dropdown menu and click an owner for the forked repository.
- Ensure that the Copy the
DEFAULT
branch only is selected. - Click Create fork.
-
On GitHub, navigate to the forked repository.
-
Click the Code button.
-
Copy the URL.
-
In the terminal, navigate to the directory where you want to clone the repository.
-
Run the following command:
# Command syntax git clone URL # Examples git clone https://github.com/YOUR-USERNAME/asyncapi-community.git git clone [email protected]:YOUR-USERNAME/asyncapi-community.git
Configure a remote repository that points to the upstream
repository (from which you forked). This allows you to synchronize changes you make on the fork with the original repository. Configuration can be done manually or using the GitHub UI.
Tip
If you perform fork configuration for the first time, it is recommended to do it manually to understand all the steps.
Next time you can write a script to synchronize master branch of your fork with the master branch of upstream git repository. Check this script as an example to get started.
In the terminal, navigate to your fork's location and perform the following steps:
-
Check the current list of remotes:
# Command git remote -v # Output origin https://github.com/YOUR-USERNAME/FORK-NAME.git (fetch) origin https://github.com/YOUR-USERNAME/FORK-NAME.git (push)
-
Add the
upstream
repository. In other words, point to the main project located in the AsyncAPI GitHub organization:# Command git remote add upstream https://ORIGINAL-OWNER/ORIGINAL-REPOSITORY-NAME.git # Example git remote add upstream https://github.com/asyncapi/community.git
Verify that the
upstream
has been added:git remote -v # Output origin https://github.com/YOUR-USERNAME/FORK-NAME.git (fetch) origin https://github.com/YOUR-USERNAME/FORK-NAME.git (push) upstream [email protected]:asyncapi/asyncapi-community.git (fetch) upstream [email protected]:asyncapi/asyncapi-community.git (push)
-
Fetch changes from the
upstream
:# Command git fetch upstream master
-
Set the
master
branch of your fork to track themaster
branch of theupstream
repository:git branch -u upstream/master master
Verify with
git branch -vv
:* master c2226e0 [upstream/master] Update the README.md document
By setting the upstream
branch, you can simplify your workflow. For example, you can use git pull
and git push
without specifying the remote and branch names, as Git will automatically use the upstream
branch you have set. This is particularly useful when you frequently need to synchronize your local branch with a remote branch.
You can follow the steps from the GitHub documentation to sync your fork and keep it up-to-date with the upstream
repository.
-
Create a branch on your fork.
-
Commit changes with clear messages. Use the Conventional Commits format.
-
Push changes to your fork:
git push -u origin BRANCH-NAME
For subsequent pushes, use the shorthand:
git push
-
Create a pull request from your branch of the fork repository to the
master
branch of theupstream
repository and await review.