git 安装

安装

  1. linux下常见发行版安装
# Debian/Ubuntu
$ apt-get install git
# Fedora
$ yum install git # up to Fedora 21  or: yum install git-all
$ dnf install git # Fedora 22 and later
 # Gentoo 
$ emerge --ask --verbose dev-vcs/git
# Arch Linux
$ pacman -S git
# openSUSE
$ zypper install git
# Mageia
$ urpmi git
# FreeBSD
$ pkg install git
# Solaris 9/10/11 [OpenCSW](https://www.opencsw.org/)
$ pkgutil -i git
# Solaris 11 Express
$ pkg install developer/versioning/git
# OpenBSD
$ pkg_add git
# Alpine
$ apk add git
  1. windows (略)
    3.mac (略)

配置

通常只需要配置用户和邮箱即可

$ git config --global user.name test
$ git config --global user.email [email protected]

参考

https://git-scm.com/download/linux

下载

官方源码包下载地址
官方git下载地址

你可能感兴趣的:(git 安装)