博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
git linux 多工程部署及git默认端口更改
阅读量:6370 次
发布时间:2019-06-23

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

>> ssh-keygen -t rsa -C "your_email@youremail.com"

print  Generating public/private rsa key pair.

>> Enter file in which to save the key (/root/.ssh/id_rsa): /root/.ssh/id_rsa_new

然后一路回车到底

>> cat>~/.ssh/config
# 映射一个别名
host github
hostname
# 有端口需求可以加上端口映射
# port 22022
>> ctrl+D 
 
#完整的一个config 配置文件内容host github    hostname github.com    IdentityFile ~/.ssh/id_rsa    # 端口    #port 22022Host config  HostName github.com  IdentityFile ~/.ssh/id_rsa_config

>> ssh-agent bash

>> ssh-add ~/.ssh/id_rsa_new

 

这样就完成了整体的配置

 

克隆仓库的时候这样使用

>> git clone  git@config:xxx/xxx.git  

 

 

转载于:https://www.cnblogs.com/daas/p/6140323.html

你可能感兴趣的文章
squid via检测转发循环
查看>>
计算分页
查看>>
iptables 做nat路由器脚本
查看>>
数据结构(C语言版)第三章:栈和队列
查看>>
Stopping and/or Restarting an embedded Jetty in...
查看>>
Oracle存储过程中的数据集输入参数
查看>>
vsftp 配置
查看>>
VCSA中配置时间和时区,实测至6.5适用
查看>>
高并发IM系统架构优化实践
查看>>
产品经理教你玩转阿里云负载均衡SLB系列(一):快速入门--什么是负载均衡
查看>>
有关linux--进程组、会话、守护进程详解
查看>>
我的友情链接
查看>>
monkeyrunner运行Python脚本来检查apk渠道和验证是否可以调用微信
查看>>
github获得SSH Key解决Permission denied (publickey)问题
查看>>
用java代码编写Oracle存储过程
查看>>
APACHE转发
查看>>
android-market-api
查看>>
解決 yum update錯誤:[Errno -1] Metadata file does not match checksum
查看>>
我的友情链接
查看>>
『Data Science』R语言学习笔记,获取数据
查看>>