-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(merge request): Users can merge the branches they created themsel…
…ves, close #2
- Loading branch information
1 parent
b3e2306
commit 0264a4d
Showing
2 changed files
with
40 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -56,15 +56,15 @@ docker run --name dolt --restart=always ` | |
```bash | ||
docker exec -it dolt bash | ||
# 执行下面的命令可以进入 dolt sql shell | ||
dolt --host 0.0.0.0 --port 3306 -u root -p tenxcloud --no-tls sql | ||
dolt --host 0.0.0.0 --port 3306 -u root -p yunti --no-tls sql | ||
``` | ||
|
||
使用 dolt sql 初始化数据库: | ||
|
||
```bash | ||
dolt config --global --add user.email "[email protected]" | ||
dolt config --global --add user.name "yunti" | ||
dolt --host 0.0.0.0 --port 3306 -u root -p tenxcloud --no-tls sql < /tmp/db/init.sql | ||
dolt --host 0.0.0.0 --port 3306 -u root -p yunti --no-tls sql < /tmp/db/init.sql | ||
``` | ||
|
||
启动 server: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters