通过ubuntu的APT安装

sudo apt-get update
sudo apt-get install git

配置自己的Git账号信息  

git config --global user.name "Your Name"
git config --global user.email "youremail@domain.com"

查看git的配置信息

git config --list

git就安装好了,可以使用git的命令了,如git clone  

  

相关文章:

  • 2021-09-09
  • 2021-12-08
  • 2021-09-06
  • 2021-11-22
  • 2021-08-02
  • 2021-04-16
  • 2021-11-08
  • 2021-12-07
猜你喜欢
  • 2021-09-10
  • 2022-12-23
  • 2021-12-25
  • 2021-05-26
  • 2021-12-24
  • 2021-06-14
  • 2021-10-06
相关资源
相似解决方案