版本控制工具
文章平均质量分 52
Luvean
随心随性,无欲则刚
展开
-
CentOS 7.4搭建Git远程仓库
注:以下绿色字体为服务器端操作,蓝色字体为客户端操作。 1. 服务器端安装git。 // 安装git yum install -y git // 查看git版本 git --version 2. 创建git用户,用来管理git服务。 // 创建git用户 git adduser git // 设置git用户密码 passwd git 3. 切换到git用户,创建远程仓库。 ...原创 2018-12-02 16:00:46 · 1857 阅读 · 0 评论 -
Git学习笔记
Git是一个先进的分布式版本控制系统。 一、Git安装 下载地址:https://git-scm.com/download/win 安装完成后,打开Git Bash,配置用户名和邮箱。 //配置git账号 git config --global user.name 'your-name' //配置git邮箱 git config --global user.email 'your-em...原创 2018-12-02 02:50:40 · 207 阅读 · 0 评论