摘要: 最近搭接了一套Linux环境,当使用命令git pull拉取git代码时,报了如下提示: 解决方案: 保证不再出现配置合并策略的警告文案,那么你只需要执行 git config pull.ff false 或者 git config --global pull.ff only 即可 阅读全文
posted @ 2024-05-20 09:53 童年的回忆 阅读(20) 评论(0) 推荐(0) 编辑
摘要: [root@izwz91quxhnlkan8kjak5hz wwwroot]# ls default www.syshop.com [root@izwz91quxhnlkan8kjak5hz wwwroot]# rm -rf www.syshop.com/ rm: cannot remove ‘ww 阅读全文
posted @ 2024-05-03 11:52 童年的回忆 阅读(19) 评论(0) 推荐(0) 编辑
摘要: 使用淘宝镜像源加速 NPM 最新的 npm config set registry https://registry.npmmirror.com 之前的 npm config set registry https://registry.npm.taobao.org 使用腾讯云镜像源加速 NPM np 阅读全文
posted @ 2024-04-22 15:37 童年的回忆 阅读(291) 评论(0) 推荐(0) 编辑
摘要: 全局安装pnpm后出现 , pnpm : 无法加载文件 C:\Users\AppData\Roaming\npm\pnpm.ps1,因为在此系统上禁止运行脚本。。 解决办法: 以超级管理员打开powershell set-ExecutionPolicy RemoteSigned 输入y 回车则可。 阅读全文
posted @ 2024-04-22 15:33 童年的回忆 阅读(759) 评论(0) 推荐(0) 编辑
摘要: $access_token = $this->access_token(); //获取access_token $json_url = 'https://api.weixin.qq.com/cgi-bin/qrcode/create?access_token='.$access_token; $sc 阅读全文
posted @ 2024-03-22 11:27 童年的回忆 阅读(53) 评论(0) 推荐(0) 编辑
摘要: DB::connection()->enableQueryLog(); //SQL语句 $queries = DB::getQueryLog(); $query = end($queries); print_r($query); 阅读全文
posted @ 2024-03-21 15:58 童年的回忆 阅读(34) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2024-02-25 22:51 童年的回忆 阅读(28) 评论(0) 推荐(0) 编辑
摘要: #使用root用户进入数据库 输入上面复制的root密码 mysql -u root -p #使用mysql use mysql #更新root用户权限,“%”指的是所有地址都可以访问 update user set Host='%' where User='root'; #最后一步,刷新权限即可 阅读全文
posted @ 2024-02-25 22:37 童年的回忆 阅读(12) 评论(0) 推荐(0) 编辑
摘要: remote: Please see https://github.blog/2020-12-15-token-authentication-requirements-for-git-operations/ for more information.(大家也可以看一下,是github要求使用双因子验 阅读全文
posted @ 2024-02-24 12:32 童年的回忆 阅读(103) 评论(0) 推荐(0) 编辑
摘要: 一、通过命令行(方法一) 设置代理: git config --global http.proxy http://127.0.0.1:1080 git config --global https.proxy http://127.0.0.1:1080 取消代理: git config --globa 阅读全文
posted @ 2023-12-12 11:47 童年的回忆 阅读(683) 评论(0) 推荐(0) 编辑
如果本博客解决了您的问题,可以微信支付宝打赏鼓励一下作者哦,在此表示感谢