🎨 更新部分格式

This commit is contained in:
zyimm 2023-10-10 16:25:06 +08:00
parent 3b36686e4c
commit d7646e4c4a
2 changed files with 6 additions and 3 deletions

View File

@ -6,12 +6,12 @@ tags: Git
本篇文章记录git一些常见问题解决不定时更新
1.**You asked to pull from the remote 'gitea', but did not specify a branch. Because this is not the default configured remote for your current branch, you must specify a branch on the command line**
这个错误提示说明您在从远程仓库拉取代码时没有指定分支。由于您的当前分支不是默认配置的远程分支,所以需要在命令行中指定分支。
要解决这个问题,您可以使用以下命令来拉取指定分支的代码:
```sh
git pull <remote> <branch>
```

View File

@ -12,14 +12,17 @@ tags: PHP
1. checking whether libcurl version >= 7.18.2... configure: error: no
这个类似这样错误需要确认libcurl,curl-dev是否正确安装基于不同发行版docker可能包名不一致需要根据实际情况区别以下是基于alpine docker 安装命令
```shell
apk add libcurl curl-dev
```
libcurl curl-dev 是linux下curl开发一系列依赖库和文件。http扩展需要curl所以需要安装相关依赖
2. please install and enable pecl/raphf
这个问题需要确认`pecl/raphf`扩展是否安装,如果没有需要执行:
```shell
pecl install pecl/raphf
@ -28,8 +31,8 @@ pecl install pecl/raphf
docker-php-ext-enable raphf
```
raphf 用于提供高级的哈希函数和消息认证码MAC提供一些加密算法用来保护数据安全性
raphf 用于提供高级的哈希函数和消息认证码MAC提供一些加密算法用来保护数据安全性
# 安装验证
@ -37,4 +40,4 @@ raphf 用于提供高级的哈希函数和消息认证码MAC提供一
pecl install pecl_http
```
看看是否还会报错?
看看是否还会报错?