git ssh配置

git-config

gitconfig文件

  1. 仓库级别 local 【优先级最高】
    在项目根路径的 /.git/config
  2. 用户级别 global【优先级次之】
    本机 ~/.gitconfig
  3. 系统级别 system【优先级最低】
    git安装目录下的 /etc/gitconfig

全局配置

全局生效
配置信息存储在 ~/.gitconfig

  • 查看全局配置
git config --list
  • 新增全局配置
% git config --global user.name "用户名"
% git config --global user.email "用户邮箱"

项目配置

单个项目生效
配置信息存储在项目目录下.git/config文件中

git config user.name "用户名"
git config user.email “用户邮箱”
git config --local user.name "用户名"
git config --local user.email "用户邮箱"

配置项

https://www.git-scm.com/docs/git-config#_variables

  • 用户名,密码,邮箱
    user.name
    user.email
    user.password

  • 处理“换行”(line ending)
    core.autocrlf = false
    windows 下会有 LF 转 CRLF 问题。当设置成false时,line endings将不做转换操作。文本文件保持原来的样子。

  • 网络代理
    http.proxy = <value>
    http.<url>.proxy = <value> 单独为一个URL配置代理

  • URL替换
    url.<base>.insteadOf = <value>
    value被替换为base

    • 例:将 http和https替换为ssh访问
    [url "git@git.code.oa.com:"]
      insteadOf = https://git.code.oa.com/
    [url "git@git.code.oa.com:"]
      insteadOf = http://git.code.oa.com/
    

ssh

配置信息存储在~/.ssh/

生成ssh秘钥

% ssh-keygen -t rsa -C "邮箱"
Enter file in which to save the key (/Users/yuchunxu/.ssh/id_rsa): "秘钥名"
Enter passphrase (empty for no passphrase):"秘钥密码"
Enter same passphrase again:"秘钥密码"

# 在该路径下会生成公钥 私钥
% cd ~/.ssh/
% ls
config
秘钥名
秘钥名.pub

管理秘钥对应的git仓库

% vi ~/.ssh/config
Host github		# 仓库的别名,可以随意取名
	HostName github.com			# 仓库网站的域名
	User {{用户名}}				# 仓库的用户名
	IdentityFile ~/.ssh/秘钥名	# 使用的秘钥
	# 代理连接
	Port {{跳板机的端口}}			#(如果是非22的需要填写)
	ProxyCommand corkscrew {{proxy-host}} {{proxy-port}} %h %p #代理登录命令
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

xyc1211

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值