git-----拉取github项目到本地
拉去github项目到本地
1、新建文件夹
2、进入文件夹,空白处右键,选择gitbash here,键入git init会生成 .git文件
3、配置本地仓库的账号邮箱git
$ git config --global user.name “Your Name”
$ git config --global user.email “[email protected]”
4.获取github上的项目,需找到项目地址
$ git clone 项目地址