[CentOS7]git 安装使用
Posted LeoShi2020
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[CentOS7]git 安装使用相关的知识,希望对你有一定的参考价值。
# 安装git
yum install -y git
# 配置git
git config --global user.name "<名称>"
git config --global user.email "<邮箱>"
# 查看git配置
git config --list
# 添加远端仓库
git remote add origin http://10.0.0.1/LeoShi/vue_shop.git
git add .
git commit -m "Initial commit"
git push -u origin master
以上是关于[CentOS7]git 安装使用的主要内容,如果未能解决你的问题,请参考以下文章