在Windows上使用Git,可以从Git官网直接下载安装程序,(网速慢的同学请移步国内镜像),然后按默认选项安装即可。

安装完成后,在开始菜单里找到“Git”->“Git Bash”,蹦出一个类似命令行窗口的东西,就说明Git安装成功!

Git学习笔记之在Windows上安装Git(二)

 

安装完成后,还需要最后一步设置,在命令行输入:

$ git config --global user.name "Your Name"
$ git config --global user.email "[email protected]"

 

相关文章:

  • 2021-05-02
  • 2021-10-28
  • 2021-09-03
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-03-02
  • 2021-07-12
  • 2022-12-23
  • 2022-12-23
  • 2021-05-27
  • 2022-01-02
  • 2022-01-24
相关资源
相似解决方案