💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
# git安装部署 [TOC] 参考文章:http://blog.oldboyedu.com/git/ ## 一、环境准备 ### 1. 环境搭建: ```sh [root@xxx ~]# cat /etc/redhat-release CentOS Linux release 7.4.1708 (Core) [root@xxx ~]# uname -r 3.10.0-693.el7.x86_64 [root@xxx ~]# hostname -I 10.0.0.61 172.16.1.61 [root@xxx ~]# hostnamectl set-hostname m01 ``` ### 2. 防火墙、selinux ```sh sed -i 's/SELINUX=enforcing/SELINUX=disabled/g' /etc/selinux/config setenforce 0 systemctl stop firewalld.service systemctl disable firewalld.service ``` ## 二、安装配置 ### 1.安装配置 ```sh yum -y install git # 1) 配置git使用用户 git config --global user.name "noah" # 2) 配置git使用邮箱 git config --global user.email 278554547@qq.com # 3) 语法高亮 git config --global color.ui true # 4) 查看全局配 [root@xxx ~]# git config --list user.name=noah user.email=278554547@qq.com color.ui=true ``` ### 2.初始化 ```sh # 创建目录 mkdir git_data cd git_data/ # 初始化 git init # 查看工作区状态 git status ``` 目录说明: ![mark](http://noah-pic.oss-cn-chengdu.aliyuncs.com/pic/20200308/172147344.png)