@galacean/cli 2.0.0-alpha.5 → 2.0.0-alpha.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +7 -0
- package/dist/cli.bundle.cjs +6847 -2544
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -26,6 +26,13 @@ galacean push
|
|
|
26
26
|
galacean watch
|
|
27
27
|
```
|
|
28
28
|
|
|
29
|
+
`push` 默认会让远端资产收敛到当前本地工作区(authoritative sync)。
|
|
30
|
+
如果只想上传本地增量、暂时保留远端中未出现在本地 manifest 的资产,可显式使用:
|
|
31
|
+
|
|
32
|
+
```bash
|
|
33
|
+
galacean push --no-prune-remote
|
|
34
|
+
```
|
|
35
|
+
|
|
29
36
|
## 文档
|
|
30
37
|
|
|
31
38
|
完整命令参考见 [CLI Reference](docs/index.md)。
|