博客
关于我
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/

你可能感兴趣的文章
NO 157 去掉禅道访问地址中的zentao
查看>>
no available service ‘default‘ found, please make sure registry config corre seata
查看>>
No compiler is provided in this environment. Perhaps you are running on a JRE rather than a JDK?
查看>>
no connection could be made because the target machine actively refused it.问题解决
查看>>
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 mapping found for HTTP request with URI [/logout.do] in DispatcherServlet with name 'springmvc'
查看>>
No module named 'crispy_forms'等使用pycharm开发
查看>>
No module named 'pandads'
查看>>
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 qualifying bean of type ‘com.netflix.discovery.AbstractDiscoveryClientOptionalArgs<?>‘ available
查看>>
No resource identifier found for attribute 'srcCompat' in package的解决办法
查看>>
no session found for current thread
查看>>
No static resource favicon.ico.
查看>>