Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
连远生 committed Mar 18, 2024
1 parent 2ff4c02 commit 71927ff
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 4 deletions.
1 change: 1 addition & 0 deletions content/Web/WASM.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
- API
- MVP
- WASI(POSIX syscall)
- [WASIX](https://github.com/wasix-org)
- WCGI
- [支持语言](https://github.com/appcypher/awesome-wasm-langs)
- [Emscripten](https://emscripten.org/) 是一个功能齐全的工具链,它不仅可以帮你将 C++ 编译为 Wasm,还提供了一个转换层,可以将 POSIX API 调用转换为 Web API 调用,将 OpenGL 转换为 WebGL
Expand Down
11 changes: 10 additions & 1 deletion content/fu.md
Original file line number Diff line number Diff line change
Expand Up @@ -439,4 +439,13 @@ window.alert("Billing the user...");
- 打包工具
- 构建优化
- 生产优化
- [unplugin-parcel-macros](https://github.com/devongovett/unplugin-parcel-macros)
- [unplugin-parcel-macros](https://github.com/devongovett/unplugin-parcel-macros)
- 状态管理
- 全局状态:这是整个层次结构中不同组件可以访问的状态
- 分层状态:这是层次结构的子树中不同组件可以访问的状态
- 单个组件级别状态:这是层次结构中单个组件内可以访问的状态
- 在这些场景中,如果在保持 Vue 的响应式双向绑定的同时,可以轻松分离状态而没有 prop 钻取的摩擦和痛苦,那就太好了。这正是 defineModel 发挥作用的地方,因为它极大地减少了 prop drilling 的摩擦
- 逻辑组合、复用
- 响应式-分离和封装相关的状态和逻辑
- 就是要做一件事,只需要集齐这件事要发生的要素就行了。行动力不足,就是连拆解工作都不做,其本质是缺乏学习能力
- 拆解思维,无疑能极大限度提高行动力
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
- setUp
- Git SSH Key
- 提交规范
- 保持主干分支干净,使用快速合并策略
- 保护分支,禁止强力推送
- 分支规范
- MR & Code Review
Expand All @@ -19,7 +20,7 @@
- 切换分支
- `git switch <branch>`
- `git switch -d <commit>`:切换到 Commit 节点
- `git switch -c <new_branch>`::创建并切换到新的分支
- `git switch -c <new_branch> <base_branch>`::创建并切换到新的分支
- [合并分支](#合并分支)
- 远程分支
- git 应用下有三种分支
Expand All @@ -28,9 +29,10 @@
- 远程分支 master
- Refspec
- 规范 `[+]<src>:<dst>`
- git 通过这种格式来表示本地分支与远程分支的映射关系。通常,refspec 用于在执行 push 或 fetch 操作时定义本地引用与远程引用之间的对应关系
- `+` 告诉 Git 强制更新引用,即使不是**快进合并**策略
- git 通过这种格式来表示本地分支与远程分支的对应关系。通常,refspec 用于在执行 push 或 fetch 操作时定义本地引用与远程引用之间的对应关系
- `git branch -vv`:查看分支映射关系
- `git fetch <remote> <branch>`拉取更新远程分支
- `git fetch <remote> <branch>`更新远程分支
- `git pull <remote> <refspec>`:从远程获取最新版本并将其合并到本地
- `git pull` 命令实际上是另外两个命令的组合,即执行 `git fetch` 之后再执行 `git merge`
- 在操作的第一阶段,`git pull` 将执行 `git fetch`,范围限定为 HEAD 所指向的本地分支对应的远程分支
Expand Down

0 comments on commit 71927ff

Please sign in to comment.