【Java, Git, React】Technical documentation 和 问题汇总解决

1. Technical documentation

1.1 Git 配置

git config --global user.name "名称"

git config --global user.email "邮箱"

git config --global http.sslVerify false

git clone XXX

2. 问题汇总:

2.1 Permission Issue

fatal: could not create work tree dir 'sl-express': Permission denied

修复方法:

sudo git clone XXX

2.2 443 Issue

D:\Workspace\Workspace-MS>git clone https://github.com/1291934482/sl-express.git

Cloning into 'sl-express'...

fatal: unable to access 'https://github.com/1291934482/sl-express.git/': Failed to connect to github.com port 443: Timed out

修复方法:

D:\Workspace\Workspace-MS>git config --global http.sslVerify false

D:\Workspace\Workspace-MS>git clone https://github.com/1291934482/sl-express.git

Cloning into 'sl-express'...

remote: Enumerating objects: 9444, done.

remote: Counting objects: 100% (62/62), done.

remote: Compressing objects: 100% (39/39), done.

remote: Total 9444 (delta 9), reused 48 (delta 4), pack-reused 9382

Receiving objects: 100% (9444/9444), 261.08 MiB | 9.22 MiB/s, done.

Resolving deltas: 100% (2138/2138), done.

Checking out files: 100% (8277/8277), done.

相关推荐
啊湘11 小时前
天气查询API接口 按月Token鉴权 实时天气 物联网可用 文档齐全
java·后端·struts
嘟嘟071712 小时前
搞懂 useState 从原生 DOM 到 React 惰性初始化的完整链路
前端·react.js·编程语言
Java内核笔记12 小时前
告别十亿美元的错误 : Spring Boot 4 空安全 (JSpecify) 实战
java·spring boot·后端
糖果店的幽灵12 小时前
langgraph的 MessagesState 解读
java·开发语言·人工智能·windows·langgraph
极光代码工作室13 小时前
基于SpringBoot的在线博客系统
java·springboot·web开发·后端开发
我是唐青枫14 小时前
Java Spring Security 实战详解:从登录认证到 JWT 权限控制
java·spring
午安~婉14 小时前
Git中SSH连接
前端·git·gitee
ihuyigui14 小时前
海外签收通知短信接口
android·java·开发语言·前端·数据库·后端
海棠Flower未眠14 小时前
SpringBoot 消息死信队列(荣耀典藏版)
java·数据库·spring boot
阿虎儿14 小时前
Git exclude 功能解析
git