上一页 1 2 3 4 5 6 7 8 9 ··· 11 下一页
摘要: 1. 修改本地hosts文件 windows系统的hosts文件的位置如下:C:\Windows\System32\drivers\etc\hosts mac/linux系统的hosts文件的位置如下:/etc/hosts 2. 增加http://github.global.ssl.fastly.n 阅读全文
posted @ 2021-08-02 10:24 落华 阅读(207) 评论(0) 推荐(0) 编辑
摘要: 事情是这样的 打算更新一下远程仓库代码更新到本地 为了保险我 git add . git commit -m'1' 然后 git pull origin master 但更新后某些原因突然后悔了 打算直接这样查看commit-ID git log 结果显示的都是git pull的id 经过查询应该用 阅读全文
posted @ 2021-08-02 10:23 落华 阅读(50) 评论(0) 推荐(0) 编辑
摘要: 这个问题是因为当你在终端输入git commit -m "XXX",提交代码的时候,pre-commit(客户端)钩子,它会在Git键入提交信息前运行做代码风格检查。如果代码不符合相应规则,则报错,而它的检测规则就是根据.git/hooks/pre-commit文件里面的相关定义。查询了网上的解决办 阅读全文
posted @ 2021-08-02 10:23 落华 阅读(325) 评论(0) 推荐(0) 编辑
摘要: 这个问题是因为当你在终端输入git commit -m "XXX",提交代码的时候,pre-commit(客户端)钩子,它会在Git键入提交信息前运行做代码风格检查。如果代码不符合相应规则,则报错,而它的检测规则就是根据.git/hooks/pre-commit文件里面的相关定义。查询了网上的解决办 阅读全文
posted @ 2021-08-02 10:22 落华 阅读(2668) 评论(0) 推荐(0) 编辑
摘要: 前端代码: <!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <title></title> </head> <body> 内容:<input type="text" name="msg" id="msg" value="" /> <but 阅读全文
posted @ 2021-07-24 15:10 落华 阅读(364) 评论(0) 推荐(0) 编辑
摘要: //时间戳转日期 var timeToDate = function(time) { var date = new Date(time); Y = date.getFullYear() + '-'; M = (date.getMonth()+1 < 10 ? '0'+(date.getMonth() 阅读全文
posted @ 2021-05-21 17:56 落华 阅读(38) 评论(0) 推荐(0) 编辑
摘要: 一、 安装编译环境和工具 yum install gcc gcc-c++ autoconf automake -y yum install pcre pcre-devel -y yum install openssl openssl-devel -y yum install patch -y yum 阅读全文
posted @ 2020-12-15 22:51 落华 阅读(3036) 评论(0) 推荐(0) 编辑
摘要: 一、问题描述: 第一个modal显示,然后点击‘去处理’,隐藏第一个modal,展示第二个modal,但是第二个modal的侧边栏滚动条消失了 正常打开第二个modal,侧边栏是有上下滚动条的 打开第一个modal,然后通过jquery触发隐藏第一个modal,显示第二个modal,此时侧边栏的滚动 阅读全文
posted @ 2020-10-28 16:22 落华 阅读(591) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2020-04-28 20:06 落华 阅读(35) 评论(0) 推荐(0) 编辑
摘要: 一.数据备份: 1.使用mysqldump命令备份 mssqldump命令将数据库中的数据备份成一个文本文件。表的结构和表中的数据将存储在生成的文本文件中。 mysqldump命令的工作原理很简单,他先查出需要备份的表的结构,再在文本文件中生成一个create语句,然后将表中的所有记录转换成一条in 阅读全文
posted @ 2020-04-14 00:11 落华 阅读(113) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 11 下一页