博客
关于我
idea中push代码失败问题解决
阅读量:770 次
发布时间:2019-03-21

本文共 658 字,大约阅读时间需要 2 分钟。

解决方法如下:

: 1. 生成SSH authentication keys**

用以下命令生成SSH密钥公钥和私钥:

ssh-keygen -t rsa

按照提示一步步操作,默认情况下会生成一对Public key和Private key,分别保存在~/.ssh/id_rsa~/.ssh/id_rsa.pub文件中。

: 2. 配置GitHub账号**

登录GitHub账户,进入账户设置(Validation Settings),找到“Authentication”或“Passwords”选项,找到“Add public key”部分。

!:** 请注意**:请手动添加生成的id_rsa.pub文件内容到GitHub账目中。

: 3. 配置工具(如IDEA)使用Private key**

进入IDE设置中,找到关于Git的配置项。进入git settingsrepositories settings,选择"Add"按钮并输入私钥内容。

: 4. 克隆或提交代码**

已经准备好了?那就可以通过SSH方式直接进行git操作了。

如果你曾经使用过HTTP克隆(比如https://github.com/username/project.git),请打开८.git/config文件,将urlhttps://github.com/username/project.git修改为git@github.com:username/project.git

这样你就能通过SSH安全地向GitHub提交代码了。

转载地址:http://wgsgz.baihongyu.com/

你可能感兴趣的文章
NLP:使用 SciKit Learn 的文本矢量化方法
查看>>
Nmap扫描教程之Nmap基础知识
查看>>
Nmap端口扫描工具Windows安装和命令大全(非常详细)零基础入门到精通,收藏这篇就够了
查看>>
NMAP网络扫描工具的安装与使用
查看>>
NMF(非负矩阵分解)
查看>>
NN&DL4.1 Deep L-layer neural network简介
查看>>
NN&DL4.3 Getting your matrix dimensions right
查看>>
NN&DL4.8 What does this have to do with the brain?
查看>>
No 'Access-Control-Allow-Origin' header is present on the requested resource.
查看>>
No Datastore Session bound to thread, and configuration does not allow creation of non-transactional
查看>>
No fallbackFactory instance of type class com.ruoyi---SpringCloud Alibaba_若依微服务框架改造---工作笔记005
查看>>
No Feign Client for loadBalancing defined. Did you forget to include spring-cloud-starter-loadbalanc
查看>>
No mapping found for HTTP request with URI [/...] in DispatcherServlet with name ...的解决方法
查看>>
No module named cv2
查看>>
No module named tensorboard.main在安装tensorboardX的时候遇到的问题
查看>>
No module named ‘MySQLdb‘错误解决No module named ‘MySQLdb‘错误解决
查看>>
No new migrations found. Your system is up-to-date.
查看>>
No qualifying bean of type XXX found for dependency XXX.
查看>>
No resource identifier found for attribute 'srcCompat' in package的解决办法
查看>>
No toolchains found in the NDK toolchains folder for ABI with prefix: mips64el-linux-android
查看>>