Git版本控制系统安装部署

追风赶月莫停留,平芜尽处是春山。这篇文章主要讲述Git版本控制系统安装部署相关的知识,希望能为你提供帮助。
Git版本控制系统安装部署 1.git安装配置

1)初始化配置 [root@localhost ~]# rm -rf /etc/yum.repos.c/* [root@localhost ~]# curl -o /etc/yum.repos.d/epel.repo http://mirrors.aliyun.com/repo/epel-7.repo ; curl -o /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo [root@localhost ~]# systemctl stop firewalld [root@localhost ~]# systemctl disable firewalld [root@localhost ~]# sed -ri /^SELINUX=/c SELINUX=disabled/ /etc/sysconfig/selinux [root@localhost ~]# sed -ri /^SELINUX=/c SELINUX=disabled/ /etc/selinux/config 2)安装git [root@localhost ~]# yum -y install git [root@localhost ~]# git --version git version 1.8.3.13)设置git邮箱 [root@localhost ~]# git config --global user.name "jiangxl" [root@localhost ~]# git config --global user.email "jiangxl@mail.com" [root@localhost ~]# git config --global color.ui true 可以在gitconfig中查看 [root@localhost ~]# cat .gitconfig [user] name = jiangxl email = jiangxl@mail.com [color] ui = true

2.git提交目录文件至本地仓库首先创建git版本库,这个目录里面的所有文件都可以被git管理起来,每个文件的修改、删除、git都能跟踪,以便任何时刻都可以追踪历史,或者在将来某个时刻可以还原
2.1.创建git目录并创建文件
1)首先创建一个git目录 [root@localhost ~]# mkdir /data_git [root@localhost ~]# cd /data_git 将普通目录初始成git目录,初始成功后会多一个.git的文件夹,如果删除,则git目录变回普通目录 [root@localhost data_git]# git init 初始化空的 Git 版本库于 /data_git/.git/2)创建三个文件,并查看git工作区内容 [root@localhost data_git]# touch file1..3 [root@localhost data_git]# touch file1..3 [root@localhost data_git]# ls -a ...file1file2file3.git [root@localhost data_git]# [root@localhost data_git]# git status # 位于分支 master # # 初始提交 # # 未跟踪的文件: #(使用 "git add < file> ..." 以包含要提交的内容) # #file1 #file2 #file3 提交为空,但是存在尚未跟踪的文件(使用 "git add" 建立跟踪)

Git版本控制系统安装部署

文章图片

2.2.上传一个文件至暂存区
3)将其中一个文件上传至暂存区并查看效果 [root@localhost data_git]# git add file1 [root@localhost data_git]# git status # 位于分支 master # # 初始提交 # # 要提交的变更: #(使用 "git rm --cached < file> ..." 撤出暂存区) # #新文件:file1 # # 未跟踪的文件: #(使用 "git add < file> ..." 以包含要提交的内容) # #file2 #file3

Git版本控制系统安装部署

文章图片

2.3.上传所有文件到暂存区
4)将所有文件上传至暂存区 [root@localhost data_git]# git add . [root@localhost data_git]# git status # 位于分支 master # # 初始提交 # # 要提交的变更: #(使用 "git rm --cached < file> ..." 撤出暂存区) # #新文件:file1 #新文件:file2 #新文件:file3 #

Git版本控制系统安装部署

文章图片

【Git版本控制系统安装部署】2.4.将暂存区文件提交至本地仓库
[root@localhost data_git]# git commit -m "file1~file3" [master(根提交) f71ed91] file1~file3 3 files changed, 0 insertions(+), 0 deletions(-) create mode 100644 file1 create mode 100644 file2 create mode 100644 file3 再次使用git status会发现没有任何文件,已经全部上传到本地仓库 [root@localhost data_git]# git status # 位于分支 master 无文件要提交,干净的工作区


    推荐阅读