赞
踩
windows 客户端 安装gitbash
git config --global user.name"用户名"
git config --global user.email"邮箱@qq.com"
ssh-keygen -t rsa -C “邮箱@qq.com”
C:\Users\PC.ssh\id_rsa.pub 内容 复制到服务器的 git /home/git/.ssh/authorized_keys 里面 一行一栏
C:\Users\PC.ssh\id_rsa 添加到sourcetree 的 工具 选项 SSH 客户端配置。 正常情况即可
windows 命令行
git clone git@xxxxxxx.git
centos 服务器端 安装流程
第二个文件 客户端的配置
安装 git sourcetree
1 确认环境变量已配置
配置用户名:git config --global user.name ‘username’
配置邮箱: git config --global user.email ‘你的email’
查看配置:git config --global --list
2、生成公钥:ssh-keygen -t rsa -C ‘你的email’
生成目录:C:\Users\userName.ssh\id_rsa.pub
.pub 文件 内容完整复制 添加到git 服务器git下的 /home/git/.ssh/authorized_keys(参考目录)
目录位置根据安装目录定
一个客户端一行 粘贴到git私有服务器 authorized_keys 内即可
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。