Merge pull request #18 from gh-pr/master

tweak docs, use code instead of quote, note that u r not using POSIX sh syntax
This commit is contained in:
LIN 2021-06-01 16:52:25 +08:00 committed by GitHub
commit 2b4ae43ac3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 10 additions and 4 deletions

View File

@ -90,5 +90,5 @@ git push -u origin new-branch-name # "-u" is used to track the remote branch fro
### Step 8: Create a pull request
1. Visit your fork at <https://github.com/$user/docs> (replace `$user` with your GitHub account).
1. Visit your fork at <https://github.com/$user/oceanbase> (replace `$user` with the GitHub account which you performed the fork operation, the repo name is `oceanbase` by default and you may want to modify it).
2. Click the `Compare & pull request` button next to your `new-branch-name` branch to create your PR.

View File

@ -39,13 +39,19 @@ OceanBase Database is under [MulanPubL - 2.0](https://license.coscl.org.cn/Mulan
## How to build
#### debug mode
> sh build.sh debug --init --make
```sh
sh build.sh debug --init --make
```
#### release mode
> sh build.sh release --init --make
```sh
sh build.sh release --init --make
```
#### rpm packages
> sh build.sh rpm --init && cd build_rpm && make -j16 rpm
```sh
sh build.sh rpm --init && cd build_rpm && make -j16 rpm
```
## Contributing