拉去github项目到本地

git-----拉取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 项目地址

相关文章:

  • 2021-05-06
  • 2021-09-15
  • 2021-06-27
  • 2021-10-29
  • 2021-05-25
  • 2021-12-13
  • 2021-05-23
猜你喜欢
  • 2022-01-08
  • 2022-12-23
  • 2021-11-04
  • 2022-01-26
  • 2021-08-03
  • 2021-07-22
  • 2021-04-14
相关资源
相似解决方案