Update dev-guide.md

This commit is contained in:
hiroshisuga 2023-12-30 21:58:23 +09:00 committed by GitHub
parent 261ff6d41e
commit a0eb418cd6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -169,20 +169,20 @@ After cloning, you'll have the following directory (make sure the `bigbluebutton
/home/bigbluebutton/dev/bigbluebutton
```
Confirm that you are working on the `v2.7.x-release` branch.
Confirm that you are working on the `v3.0.x-release` branch.
```bash
cd /home/bigbluebutton/dev/bigbluebutton
git status
```
BigBlueButton 2.7 source code lives on branch `v2.7.x-release`. This is where any patches to 2.7 will be merged. If you are looking to customize your BigBlueButton 2.7 clone to fit your needs, this is the branch to use.
BigBlueButton 2.7 source code lives on branch `v3.0.x-release`. This is where any patches to 3.0 will be merged. If you are looking to customize your BigBlueButton 3.0 clone to fit your needs, this is the branch to use.
For the purpose of these instructions we'll assume you are only tweaking your clone of BigBlueButton. Thus we recommend you checkout branch `v2.7.x-release`.
For the purpose of these instructions we'll assume you are only tweaking your clone of BigBlueButton. Thus we recommend you checkout branch `v3.0.x-release`.
```
On branch v2.7.x-release
Your branch is up-to-date with 'origin/v2.7.x-release'.
On branch v3.0.x-release
Your branch is up-to-date with 'origin/v3.0.x-release'.
nothing to commit, working directory clean
```
@ -204,10 +204,10 @@ After, we need to fetch the most up to date version of the remote repository.
git fetch upstream
```
You are now ready to create a new branch to start your work and base the `v2.7.x-release` release branch
You are now ready to create a new branch to start your work and base the `v3.0.x-release` release branch
```bash
git checkout -b my-changes-branch upstream/v2.7.x-release
git checkout -b my-changes-branch upstream/v3.0.x-release
```
"checkout" switches branches
@ -216,7 +216,7 @@ git checkout -b my-changes-branch upstream/v2.7.x-release
"my-changes-branch" will be the name of the new branch
"upstream/v2.7.x-release" is where you want to start your new branch
"upstream/v3.0.x-release" is where you want to start your new branch
You should now confirm that you are in the correct branch.