一:Git介绍:Git是一款免费、开源的分布式版本控制系统,用于敏捷高效地处理任何或小或大的项目
二:Git安装:
- Git下载地址:http://git-scm.com/download/
- Git安装详细说明
- 打开你下载的exe文件
- 选择需要安装的组件:
注:如若后续只使用第三方 git 可视化工具(例如 eclipse git 插件等),不再使用 git 命令行工具的话,此处可都不勾选。
- 配置环境路径
注:建议采用第二项,使得 git 命令在 git bash 与 windows cmd 中同时可用。
- 回车换行转换配置
- 检查Git是否已经安装
打开命令工具(开始菜单–Git–Git Bash),输入git –version
- Git的使用
- 登陆github.com注册个人信息
- 要生成新的密匙,请在命令终端中执行以下操作。如果不需要更改默认的密匙存放地址,根据提示按回车键:
ssh-keygen -t rsa -C “[email protected]”
Generating public/private rsa key pair.(生成公私钥)
Enter file in which to save the key (/c/Users/you/.ssh/id_rsa): [Press enter] (默认位置就行)
接下来,你会被要求键入密码:
Enter passphrase (empty for no passphrase): [Type a passphrase]
Enter same passphrase again: [Type passphrase again]
密码可以为空。当输完密码后,你会看到如下提示:
Your identification has been saved in /c/Users/you/.ssh/id_rsa.
Your public key has been saved in /c/Users/you/.ssh/id_rsa.pub.
The key fingerprint is:
01:0f:f4:3b:ca:85:d6:17:a1:7d:f0:68:9d:f0:a2:db [email protected]
- 将你的密匙加入到你的 Github 帐号中
去c/Users/you/.ssh/目录下 ,如果未找到,请检查电脑是否设置了不显示隐藏文件夹。找到id_rsa.pub文件用记事本打开,复制里面内容到剪贴板中。
接下来登录 git.cairenhui.com,在顶部导航中选择 “Profile settings”,进入用户设置频道。
在二级导航处,选择 “SSH Keys” 选项,点击右上角的 “Add SSH Key” 按钮。
先将你的拷贝内容粘贴到 “Key” 一栏,再填写 “Title” 一栏。
最后别忘记点击 “Add key” 按钮确认。
- 在 C:\用户\你的用户目录.ssh 目录下新建 config 文件, 文件里录写入下述内容
Host git.cairenhui.com
HostName git.cairenhui.com
Port 8244
User git
IdentityFile C:\用户\你的用户目录.ssh\id_rsa
- 在命令终端中输入:
ssh -T [email protected]
不出意外的话,你会看见以下提示:
The authenticity of host ‘git.cairenhui.com (172.16.1.50)’ can’t be established.
RSA key fingerprint is 16:27:ac:a5:76:28:2d:36:63:1b:56:4d:eb:df:a6:48.
Are you sure you want to continue connecting (yes/no)?
别担心,第一次都会有此提示,应该是类似指纹识别之类的东东,输入 yes 继续。
当看到终端提示:
Welcome to GitLab, yourname!
恭喜你,大功告成!