github error仓库git

去年最火的 JS 开源项目「GitHub 热点速览」

去年最火的 JS 开源项目「GitHub 热点速览」 近日,「Best of JS」发布了过去一年在 GitHub 上 Star 数增速最快的 JavaScript 开源项目(2023 JavaScript Rising Stars),前 10 的开源项目 Star 增长竟然都是令人惊叹的 1.5w ......
热点 项目 GitHub JS

linux 安装最新版本git

第一步,官网下载安装包 https://git-scm.com/download/linux 第二步,解压安装包 tar -zxvf git-2.34.1.tar.gz 第三步,安装编译环境 yum install curl-devel expat-devel gettext-devel opens ......
版本 linux git

GitHub常用搜索技巧

普通关键词搜索 搜索关键词为javascript的所有项目,可以搜索到数量为 2 百万的项目,数量庞大,不利于筛选。 高级搜索(添加限定词) 搜索写法 含义 in:name XXX 按照项目(仓库)名称搜索 in:description XXX 按照项目(仓库)描述搜索 in:readme XXX ......
常用 技巧 GitHub

A connection was successfully established with the server but then an error

在使用EFCore生成数据库的时候,报上面的错误! 解决方法: 加(Encrypt=True;TrustServerCertificate=True;)即可: "ConnectionStrings": { "DefaultConnection": "Data Source=LAPTOP;Initia ......

vscode错误:Unable to connect to VS Code server: Error in request.

这种错误常见于vscode自动连上了之前失效的socket,解决方案就是,关闭vscode,然后用ssh进入服务器,kill掉所有的vscode进程 ps -fu $USER | grep vscode | grep -v grep | awk '{print $2}' | xargs kill 然 ......
错误 connect request vscode Unable

【解决方案】Error running,Command line is too long

一、 现象 IDEA 提示 Error running,Command line is too long 二、 原因 Java 命令行启动举例如下图,当命令行字符过多的时候,就会出现 Error running,Command line is too long 的问题 三、解决思路 上图是最终解决方 ......
解决方案 Command running 方案 Error

git bash报错fatal: detected dubious ownership in repository at的解决方法

由于新版本的git安全机制,需要核对文件安全性,如果文件夹所以者和当前用户不一致就警告。 方法1,可以把文件的所有者更改为当前用户的 方法2,命令 git config --global --add safe.directory "你的目录或者文件" 意思就是把该目录或者文件白名单安全的 ......
repository ownership detected dubious 方法

我开源了一个 Go 学习仓库

这个学习仓库中核心包含《The Go Programing Language》一至八章讲解与分析,同时同步收录往期公众号和博客的精彩文章,更有电子书和建立模板供大家参考学习。 ......
仓库 Go

fish和pacman:“error: Unable to read input file: 是一个目录”报错的处理

问题描述 依照Arch Linux Wiki中,此页面介绍的方法,通过保持默认 shell 为 Bash 不变,然后添加exec fish到合适的 Bash 配置文件中,比如.bashrc,可以使得 Bash 会正常执行/etc/profile和/etc/profile.d中的所有配置文件。然而,注 ......
目录 Unable pacman error input

GitHub OAuth2的授权指南

一.OAuth2简介 OAuth 2.0(开放授权 2.0)是一种用于授权的开放标准,旨在允许用户在不提供他们的用户名和密码的情况下,授权第三方应用访问其在另一网站上的信息。它是在网络服务之间安全地共享用户资源的流行协议。 以下是OAuth2的主要组成部分和概念: 资源所有者(Resource Ow ......
指南 GitHub OAuth2 OAuth

ERROR 2059 (HY000): Authentication plugin 'caching_sha2_password'

mysql> set global validate_password.length = 6; mysql> set global validate_password.policy = LOW; # 授权所有主机都可以通过root用户,密码123456,进行访问数据库# 123456:给新增权限用户 ......

mysql> GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' WITH GRANT OPTION; ERROR 1410 (42000): You are not allowed to create a user with GRANT

mysql> GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' WITH GRANT OPTION;ERROR 1410 (42000): You are not allowed to create a user with GRANT 解决办法 以下是 8.0版本的 ......
GRANT 39 PRIVILEGES allowed OPTION

"nginx.conf" E514 : write error (file system full?)

出现这段提示,可以先看看磁盘空间是不是满了 不看不知道,一看吓一跳,什么时候我的业务这么丰富了 下面开始查看哪个位置占用空间了 查看各目录大小 du -h --max-depth=1 / 再次确认详细的地方 du -h --max-depth=1 /home 这里就确认了具体的位置 这个时候先删除m ......
quot system nginx error write

redis报错MISCONF Errors writing to the AOF file: No space left on device,磁盘满无法写入数据报错

查询报错远程调用接口异常,F12查看网络和标投和预览到是mgr的接口此错误#根据报错提示:Error in execution; nested excepti on is io.lettuce.core.RedisCommandExecutionException: MISCONF Errors w ......
磁盘 MISCONF writing 数据 Errors

git commit规范

git commit message基本格式 <type>(<scope>): <subject> type(required) 用于说明git commit的类别,只允许使用下面的标识。 feat:新功能(feature)。 fix:修复bug,可以是QA发现的BUG,也可以是研发自己发现的BUG ......
commit git

Flutter 项目运行到ios模拟器报错 : Error (Xcode): SDK does not contain 'libarclite'

Flutter 项目运行到ios模拟器报错: Error (Xcode): SDK does not contain 'libarclite' at the path '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefaul ......
模拟器 libarclite Flutter contain 项目

Git提交规范

参考 https://juejin.cn/post/6844903793033756680 正文 Commit message 格式,为了方便使用,我们避免了过于复杂的规定,格式较为简单且不限制中英文: <type>(<scope>): <subject> // 注意冒号 : 后有空格 // 如 f ......
Git

如何把已有项目上传到git

已有项目上传到git 若要将现有的项目上传至Git仓库中,可以按照以下步骤进行操作: 在本地创建一个新的文件夹用于存放该项目。 打开命令行工具(如Windows系统中的cmd或者MacOS/Linux系统中的Terminal)并导航至该文件夹所在路径。 使用git init命令初始化一个空的Git仓 ......
项目 git

一段shell代码可用于git部署代码到服务器的操作

整个执行的思路: 1 先放弃服务器本地的修改,把代码从git管理服务器检出,最新的代码。 2 复制配置测试或生产环境配置文件到工程里面。 3 文件夹的权限重新覆盖。 比如把下面这段bash 脚本命名为test_shop.sh,赋予它可执行的权限。chmod a+x test_shop.sh #!/b ......
代码 服务器 shell git

openEuler欧拉设置git pull免密

使用git config命令在本地全局设置用户名和邮箱 git config --global user.name "username":全局添加用户名 git config --global user.email “someone@mail.com”:全局添加邮箱 git config --glo ......
openEuler pull git

【问题记录】【Fastjson】Fastjson 反序列化失败,syntax error, position at 0, name value

1 问题现象 今儿调 webservice 的一个接口, 他们有一个 json 字符串,我反序列话的时候,发现报错: // 返回json字符串 {"rs":"false","value":"JSONObject["dbilldate"] not found."} 看字符串觉得没啥毛病。 2 解决办法 ......
Fastjson 序列 position syntax 问题

我的 .NET/C# 开源项目清单,同步维护于 Github 和 Gitee

我的 .NET/C# 开源项目清单,同步维护于 Github 和 Gitee 我的开源项目过去一直托管在 Github 上。目前也同步上传到了国内的 Gitee 平台,同步维护。本文整理了所有开源项目的链接和简介,希望对你有用。 分类:软件产品 技术开发 标签: .Net 开源 2021/3/15 ......
清单 项目 Github Gitee NET

git常用命令

1.克隆项目到本地 git clone http://www.test.com/test/code.git 2.创建工作区,创建分支,删除分支 git init git branch dev git branch -d dev 3.查看远程分支和本地分支情况 git branch -a //查看所有 ......
命令 常用 git

安装篇 —— git

下载git安装包 1、可以通过官网下载:https://git-scm.com/download/win 如果下载速度过慢,可以直接从阿里镜像中获取:https://registry.npmmirror.com/binary.html?path=git-for-windows/ 2、也可以从我的网盘 ......
git

Redis - (error) WRONGTYPE Operation against a key holding the wrong kind of value

zzh@ZZHPC:~$ docker exec -it redis redis-cli 127.0.0.1:6379> SET bike:1 "Process 134" OK 127.0.0.1:6379> GET bike:1 "Process 134" 127.0.0.1:6379> HSET ......
Operation WRONGTYPE against holding Redis

android编译kanzi 问题 (3) Build command failed.ninja: error: '../../../../../../lib/android_gradle/ES3_Release/arm64-v8a/xxxxx.so', needed by 'xxxxxx.so', missing and no known rule to make it

问题原因: 当前的cmake环境中,找不到所述的库目录。 解决办法: 在error的上面一般会提示在哪个路径里ninja失败。 ninja: Entering directory `E:\Application\output\cmake\app\cmake\release\arm64-v8a' 然后 ......

android编译kanzi 问题 (1) Caused by: java.io.FileNotFoundException: Error: Could not find or access Kanzi's Android libraries directory: C:\XXXXXXX

问题原因: 当前的安卓工程找不到kanzi 的android库库目录。大多数的android工程里都会带有一个kanzi_home的路径,这个和本机不匹配就会有该问题。 解决办法: android_gradle 下的local.properties 改下kanzi home 路径,跟自己本机电脑的环 ......

GitHub Pull request 同步解决代码冲突

参考: https://zhuanlan.zhihu.com/p/337949346 git remote -vgit remote add upstream git@gitee.com:src-anolis-os/bpftrace.gitgit remote -vgit fetch upstrea ......
request 代码 GitHub Pull

Conditional Git Configuration 有条件配置Git信息

本文学习自 Blog 本文介绍Git的一个特性,具有潜在的实用性。该特性就是“有条件地为Git项目配置Git信息”。这意味着开发者能根据简单的条件设置,为Git项目仓库自动添加或覆盖添加Git配置信息。 下面通过一个简单的例子进行说明。在系统层面的Git配置中,添加如下内容: [includeIf ......
Configuration Conditional Git 条件 信息
共4800篇  :1/160页 首页上一页1下一页尾页