[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 安装使用的主要内容,如果未能解决你的问题,请参考以下文章

CentOS7 安装git服务器

PHP代码-psysh调试代码片段工具

VIM 代码片段插件 ultisnips 使用教程

CentOS7安装最新版git教程

使用 Git 来管理 Xcode 中的代码片段

安装centos7与git使用