JoYous-SUN
JoYous-SUN
## 如何补交自己的 github commit 利用 git commit --date 的操作,可以指定 commit 的时间。这个是属于补交的操作。如果有修改 commit 时间的操作,就需要用到 git commit --ament,进入交互模式修改。 首先,获取到你想补交的时间。mac 下的获取时间的命令是 `date`,另外 commit 的时间格式是英文的标准时间,这个可以通过 `date -R` 获取。但是如何获取指定的标准时间呢。有两种情景: - 一个是你想补交昨天,或者前天的 commit,你也不知道具体日期。那就利用 `-v` 参数,`date -v...
## Commit message 规范 - feat: A new feature - fix: A bug fix - docs: Documentation only changes - style: Changes that do not affect the meaning of the...
``` // 打标签 git tag -a v0.0.x git push origin 0.0.x ```
@WisestCoder 看怎么理解了,这里的 retry 是对失败的任务进行重试,所以 index 是当前的。已经成功的就不需要了
@youngwind 谢谢。还是要向你多多学习
@neal1991 不是啊。你可以状态提升,或者使用 context,或者用 订阅,redux 等都可以。比如组件层级是 A1 包含 B1 和 B2,B 分别是 C1 和 C2。如果想要 C1 和 C2 通信,你可以把 state 定义到 A 中,这属于变量提升,风险就是如果再有和 A1 同层级的 A2 ,下面一个组件想和 C1 通信,state 可能就要重新改动,提升到 A1...
@dioxide ```javascript const func = a => b => c => { //code } ``` 这就是三阶函数。 ```javascript const func = a => b => { //code } ``` 这就是二阶。 看他要执行几次才能到最内部的函数代码,就是几阶。统称就是高阶函数...
@liuyiliuyi 是的,感谢... 已修改。我也不知道我当时为啥写了这句话- -
@guguji5 dchat 私聊我呀 哈哈
@abimelex - If you want to do something at request header or response header, you can use option. The usage is the same as http-proxy-middleware is. example: ```js options =...