IDEA中使用http协议

image

三、如何使用协议

3.1使用http协议

项目右键-》Git -》 repository -》 remote -》选择http协议的地址
image

3.2 使用ssh协议

首先Git Bash或软件生成SSH秘钥

生成秘钥请参考

SSH公钥默认存储在账户的主目录下的 ~/.ssh目录。

//Git Bash
$ cd ~/.ssh
$ ls
id_rsa id_rsa.pub known_hosts

id_rsa或id_rsa文件是密钥。
.pub后缀的文件是公钥
通过ssh-keygen创建ssh公钥,要求输入密码时留空就可以在使用的时候不输入。

使用cat ~/.ssh/id_rsa.pub查看公钥.
image

注意:
1)http协议的url中包含此协议,直接选择即可在IDEA中使用
2)ssh协议使用前必须配置本地和GitLab的公钥,然后才能在IDEA中使用

image

重要信息

image
image
image
image

posted @ 2025-11-30 18:21  刘大猫26  阅读(0)  评论(0)    收藏  举报