git
AnyAnyAnny
Linux/openwrt/MTK/QCA/Realtek
展开
-
[git]git 私钥正确但是clone代码出现w1804@xxx.xxx.xxx.com: Permission denied (publickey). 问题
这是由于系统默认配置的用户名和我们私钥的用户名不匹配导致,直接通过config文件指定用户名就可以。echo "User gerrirt用户名" >>~/.ssh/config。在~/.ssh目录下创建config文件(如果没有的话)原创 2024-04-17 13:41:58 · 277 阅读 · 0 评论 -
git 常用命令(含删除文件) git提交本地分支到远程分支
Git常用操作命令收集1) 远程仓库相关命令检出仓库:$gitclonegit://github.com/jquery/jquery.git查看远程仓库:$gitremote -v添加远程仓库:$gitremote add [name] [url]删除远程仓库:$gitremote rm [name]修改远程仓库:$gitremote set-url --push[name][newUrl]拉取远程仓库:$gitpull [remoteName] [lo...转载 2021-05-12 15:39:29 · 323 阅读 · 0 评论 -
ubuntu添加ssh id_rsa之后clone代码出现Permissions 0766 for ‘/root/.ssh/id_rsa‘ are too open
问题log@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ WARNING: UNPROTECTED PRIVATE KEY FILE! @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@Permissions 0766 for '/root/.ssh/id_rsa' are too open.It is require原创 2021-04-28 10:23:49 · 420 阅读 · 0 评论 -
ubuntu下使用git克隆https仓库出现unable to get issuer certificate解决方案
问题描述: ubuntu下使用git克隆添加git开头的地址可以正常克隆,使用https开头的地址无法克隆,提示unable to get issuer certificate解决方案:git config --global http.sslVerify false设置之后,再次clone https开头地址,可以正常...原创 2020-08-28 12:52:28 · 861 阅读 · 0 评论 -
openthread编译出现CMake Error at third_party/openthread/CMakeLists.txt:46 (add_subdirectory)
问题log如下-- Found PkgConfig: /home/wellnw/openwrt-19.07.2/openwrt/staging_dir/host/bin/pkg-config (found version "0.29.2")-- Checking for module 'systemd'-- No package 'systemd' foundCMake Error at third_party/openthread/CMakeLists.txt:46 (add_subdi..原创 2020-06-07 15:59:41 · 3015 阅读 · 2 评论 -
git添加公钥后报错sign_and_send_pubkey: signing failed: agent refused operation Permission denied 的解决办法
在服务器添加完公钥后报错 sign_and_send_pubkey: signing failed: agent refused operation Permission denied (publickey). fatal: Could not read from remote repository.这个时候我们只要执行下 eval"$(ssh-agent ...原创 2019-09-10 10:23:40 · 4180 阅读 · 4 评论