美文网首页
git 安装及配置

git 安装及配置

作者: m23100 | 来源:发表于2016-09-23 16:36 被阅读0次

注册GitHub 账号

安装git

https://git-scm.com/downloads

git配置

$ git config --global user.name "Your Name"
$ git config --global user.email "email@example.com"

生成公钥,私钥

ssh-keygen -t rsa -C "email@example.com"

将ssh配置到GitHub中

由于本地Git仓库和GitHub仓库之间的传输是通过SSH加密的,所以,需要设置:
第1步:创建SSH Key。在用户主目录下,.ssh目录id_rsa和id_rsa.pub这两个文件,如果已经有了,可直接跳到下一步。如果没有,打开Shell(Windows下打开Git Bash),创建SSH Key:
$ ssh-keygen -t rsa -C "youremail@example.com",然后一路回车,使用默认值即可
id_rsa和id_rsa.pub两个文件,这两个就是SSH Key的秘钥对,id_rsa是私钥,不能泄露出去,id_rsa.pub
是公钥,可以放心地告诉任何人。
第2步:登陆GitHub,打开“Account settings”,“SSH Keys”页面:
然后,点“Add SSH Key”,填上任意Title,在Key文本框里粘贴id_rsa.pub文件的内容:

github account

git init 命令把目录变成Git可以管理的仓库

$ git init

Git Gui 客户端工具

下载TortoiseGit和Language Packs
https://download.tortoisegit.org/tgit/

效果图

移步git服务器端搭建

相关文章

网友评论

      本文标题:git 安装及配置

      本文链接:https://www.haomeiwen.com/subject/ugbtyttx.html