gitHub添加公钥 gitHub是通过SSH公钥连接到现有仓库的 设置SSH Key ssh-keygen -t rsa -C "your_email@example.com"Generating public/private rsa key pair.Enter file in which to save the key (/Users/mouMiFan/.ssh/id_rsa): //Enter 回车Enter passphrase (empty for no passphras…
import json from collections import Counter import matplotlib.pyplot as plt import matplotlib as mpl def extract(fpath): # 提取数据 # 返回包含有两个元素的元组组成的列表 with open(fpath, encoding='utf-8') as f: data = json.load(f) company_info = [] for item in data['erDat…
下载git安装 ->https://git-scm.com/downloads 新建git目录 在目录下右键选择Git Bash Here 执行 git init 拷贝项目到git目录下 在git里生成公钥文件 ssh-keygen -t rsa -C 你的github所用的邮箱 直接回车里面有生成.ssh目录生成如下 Your identification has been saved in /c/Users/Administrator/.ssh/id_rsa.-------(在这里)You…
1.背景介绍 缘由:在github上下载goagent时出现错误. 在终端使用命令:git clone git@github.com:phuslu/goagent.git 会报权限错误如下: Cloning into 'goagent'... The authenticity of host 'github.com (192.30.252.128)' can't be established. RSA key fingerprint is ::ac:a5:::2d:::1b::4d:eb:. A…