当前位置: 首页>编程语言>正文

idea ssh公钥 idea ssh连接

idea集成git

idea 设置git

idea ssh公钥 idea ssh连接,idea ssh公钥 idea ssh连接_git,第1张

idea 新建工程交由git管理

idea ssh公钥 idea ssh连接,idea ssh公钥 idea ssh连接_远程仓库_02,第2张

idea ssh公钥 idea ssh连接,idea ssh公钥 idea ssh连接_推送_03,第3张

idea ssh公钥 idea ssh连接,idea ssh公钥 idea ssh连接_git_04,第4张

点击提交即可提交到远程仓库

推送远程到远程仓库

  1. 需要在远程新建仓库小猿已经新建了仓库
  2. 将代码推送到远程仓库



    最后点击push即可,首次推送可能要输入远程仓库的用户名和密码。
    推送成功

从远程克隆到本地仓库

idea ssh公钥 idea ssh连接,idea ssh公钥 idea ssh连接_git_05,第5张

克隆完成。

idea ssh公钥 idea ssh连接,idea ssh公钥 idea ssh连接_idea ssh公钥_06,第6张

版本对比

idea ssh公钥 idea ssh连接,idea ssh公钥 idea ssh连接_远程仓库_07,第7张

idea ssh公钥 idea ssh连接,idea ssh公钥 idea ssh连接_推送_08,第8张

idea ssh公钥 idea ssh连接,idea ssh公钥 idea ssh连接_推送_09,第9张

创建分支

idea ssh公钥 idea ssh连接,idea ssh公钥 idea ssh连接_idea ssh公钥_10,第10张

idea ssh公钥 idea ssh连接,idea ssh公钥 idea ssh连接_远程仓库_11,第11张

其余的按照提示创建即可

切换分支

idea ssh公钥 idea ssh连接,idea ssh公钥 idea ssh连接_git_12,第12张

如图所示直接选择checkout即表示切换到b1分支。

合并分支

master的 UserDao

idea ssh公钥 idea ssh连接,idea ssh公钥 idea ssh连接_git_13,第13张

b1的UserDao

idea ssh公钥 idea ssh连接,idea ssh公钥 idea ssh连接_git_14,第14张

执行分支合并

切换到master分支下

按照如下步骤

idea ssh公钥 idea ssh连接,idea ssh公钥 idea ssh连接_推送_15,第15张

idea ssh公钥 idea ssh连接,idea ssh公钥 idea ssh连接_idea ssh公钥_16,第16张

分支合并成功

idea ssh公钥 idea ssh连接,idea ssh公钥 idea ssh连接_远程仓库_17,第17张

git与SSH协议传输整合

由于Git的远程仓库并不在我们本地,当我们在使用远程仓库的时候(例如克隆、拉取、推送)就会涉及到数据的网络传输,Git支持多种数据传输协议。

  1. 本地协议(Local)
  2. HTTPS 协议
  3. SSH(Secure Shell)协议
  4. Git 协议

SSH协议简介

SSH 为 Secure Shell(安全外壳协议)的缩写,由 IETF 的网络小组(Network Working Group)所制定。SSH 是目前较可靠,专为远程登录会话和其他网络服务提供安全性的协议。利用 SSH 协议可以有效防止远程管理过程中的信息泄露问题。

由于本地Git仓库和远程仓库之间的传输是通过SSH加密的,所以必须要让远程仓库服务器认证你的SSH key,在此之前,必须要生成SSH key。

使用ssh协议通信时,推荐使用基于密钥的验证方式。你必须为自己创建一对密匙(公钥和私钥),并把公匙放在需要访问的服务器上。

使用步骤

生成公司秘钥

任意目录下打开git bash

ssh-keygen -t rsa -b 4096 -C "youemail@xxx.com"

idea ssh公钥 idea ssh连接,idea ssh公钥 idea ssh连接_git_18,第18张

所生成的秘钥

idea ssh公钥 idea ssh连接,idea ssh公钥 idea ssh连接_idea ssh公钥_19,第19张

id_rsa.pub 为公钥,将其内容放到远程仓库中就可以了

idea ssh公钥 idea ssh连接,idea ssh公钥 idea ssh连接_idea ssh公钥_20,第20张

配置好后可以在git bash中验证是否授权成功:

ssh -T git@gitee.com

idea ssh公钥 idea ssh连接,idea ssh公钥 idea ssh连接_idea ssh公钥_21,第21张

idea ssh公钥 idea ssh连接,idea ssh公钥 idea ssh连接_推送_22,第22张

然后以git bash 或者idea都可拉取代码了。



https://www.xamrdz.com/lan/5fu1960381.html

相关文章: