【Git】Linux服务器Centos环境下安装Git与创建本地仓库

目录

一、查看是否安装

二、如果安装卸载

三、安装Git

四、创建仓库


一、查看是否安装

git --version

使用以上命令查看是否安装了Git

二、如果安装卸载

sudo yum remove git -y

上述命令进行卸载

三、安装Git

sudo yum  install git -y

使用上述命令安装

四、创建仓库

mkdir gitcode

先创建一个文件夹,然后进入该目录下

cd gitcode

使用以下命令创建仓库

git init 

你可能感兴趣的:(Java,git,github)