最近整理散乱在各处的文件时,想到这个问题,于是在知乎上看到一个方法,测试可行,所以整理在此: 此处以pull我的仓库中https://github.com/mayaobei/RaspBerryPi/tree/master/python/python-qrcode目录为例进行说明 1.创建一个空目录用于存放pull下来的文件 mkdir testSparse 2.初始化git,开启core.spar […]
分类: git
git push提示403
RedHat6.3上遇见错误:
1 2 3 4 5 |
error: The requested URL returned error: 403 while accessing https://github.com/jma87/socket.git/info/refs fatal: HTTP request failed |
查看github解释,应该是git版本(1.17.1)过低, yum update又提示没有可用的升级包,只能试试用ssh方式,按照官方的说明,配置一下ssh key: 1.生成rsa密钥对
1 2 3 4 5 6 7 |
#ssh-keygen -t rsa -b 4096 -C "your_email@example.com" Generating public/private rsa key pair. Enter file in which to save the key (/Users/you/.ssh/id_rsa): [Press enter] Enter passphrase (empty for no passphrase): [Type a passphrase] # Enter same passphrase again: [Type passphrase again] |
"your_email@example.co […]
github创建repository并上传自己的代码
git已经红火了好多年,但是作为一个非开发人员,要不是下载raspberry pi的开发环境有接触过,对其真是非常陌生。为了跟上这如火如荼的计算机世界发展的脚步,今天也来试一下github的功能。就以上一篇libusb的测试内容为例,在github上创建一个仓库并将代码上传到github。 一切只需要从注册一个github账号开始,然后在github的页面上创建一个repository,并为其取个 […]