Git 搭建本地环境
Posted m-balance
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Git 搭建本地环境相关的知识,希望对你有一定的参考价值。
1.安装GIt
- Linux :
输入命令$ sudo apt-get install git
- Windows :
下载并安装 https://git-scm.com/downloads
2.设置基本信息及初始化
$ git config --global user.name "name" $ git config --global user.email "email@ex.com"
$ git init
3.获取SSH
window
本机公钥路径
本地公钥如果不存在,可以在gitbash里输入 ssh-keygen 生成本地公钥
Linux
本机公钥路径
如果本地公钥不存在,可以在terminal 输入 ssh-keygen
以上是关于Git 搭建本地环境的主要内容,如果未能解决你的问题,请参考以下文章