摘要: 1、git Please move or remove them before you can merge 删除本地修改:git clean -d -fx . 2、合并之前的历史 $ git fetch origin master(先抓取远程仓库的更新到本地) $ git merge origin 阅读全文
posted @ 2020-08-10 17:59 二刀尘 阅读(97) 评论(0) 推荐(0) 编辑
摘要: 下载安装程序 wget https://www.apachefriends.org/xampp-files/7.4.8/xampp-linux-x64-7.4.8-0-installer.run (window版本:https://www.apachefriends.org/xampp-files/ 阅读全文
posted @ 2020-07-30 20:17 二刀尘 阅读(254) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2020-04-14 13:47 二刀尘 阅读(0) 评论(0) 推荐(0) 编辑
摘要: 简易的命令行入门教程: Git 全局设置: git config --global user.name "xxx" git config --global user.email "xxx@qq.com" 创建 git 仓库: mkdir xxx cd xxx git init touch READM 阅读全文
posted @ 2020-03-17 15:47 二刀尘 阅读(164) 评论(0) 推荐(0) 编辑
摘要: 方法一: 编修php.ini 找到:max_execution_time = 30 ,这个是每个脚本运行的最长时间,单位秒,修改为: max_execution_time = 150 找到:max_input_time = 60,这是每个脚本可以消耗的时间,单位也是秒,修改为: max_input_ 阅读全文
posted @ 2019-09-11 11:34 二刀尘 阅读(624) 评论(0) 推荐(0) 编辑
摘要: 隐藏服务器版本信息: 修改文件 httpd-default.conf(位置:..\apache\conf\extra): 第55行:ServerTokens Full 修改为 ServerTokens Prod 第65行:ServerSignature On 修改为 ServerSignature 阅读全文
posted @ 2019-08-20 14:42 二刀尘 阅读(253) 评论(0) 推荐(0) 编辑