摘要:
在 Version Control 的 log 右键,选择要回退到的版本,选择 Reset Current Branch to Here 上边也可以通过命令行完成 git log 查看历史版本idgit reset --soft 想要回退到的版本id 推送 git push origin maste 阅读全文
摘要:
1、Request cannot be executed; I/O reactor status: STOPPED 2、max virtual memory areas vm.max_map_count [65530] is too low, increase to at least [262144 阅读全文
摘要:
函数声明: function foo() {},函数声明会被引擎提升匿名函数:function () {}; 函数表达式:var fun = function () {}; 要在函数体后面加括号就能立即调用,则这个函数必须是函数表达式,不能是函数声明 foo();// 因为函数声明提升,不会报错 f 阅读全文
摘要:
参考链接:https://blog.csdn.net/zhuyu19911016520/article/details/90714429 As a general rule you need the only worker with large number of worker_connection 阅读全文