centos搭建git

centos搭建git
一、远程git服务器搭建 1、首先,安装Git yum install git -y   2、创建git用户组和git用户 group add gitgroup useradd -g gitgroup git -s /usr/bin/git-shell 注意,-s意思是设定默认shell,/usr/bin/git-shell是git的shell,这样创建的git用户就没有系统登录权限,但可以使用git-shell。 或者直接创建用户后,在/etc/passwd文件中编辑用户配置信息,例如: git:x:502:502::/home/git:/usr/bin/git...

git命令一览表

git命令一览表
CREATE Clone an existing repository$ git clone ssh://user@domain.com/repo.git Create a new local repository $ git init   LOCAL CHANGES Changed files in your working directory $ git status Changes to tracked files $ git diff Add all current changes to the next commit $ git add . Add some changes in <file> to the next commit $ git add -p <file> Commit all loca...

Linux-centos源码安装最新版本git

Linux-centos源码安装最新版本git
1、git下载地址: https://git-scm.com/download/linux  下载源码包   2、下载到/usr/local/src/目录,解压并进入目录进行安装: unzip git-master.zip cd git-master   3、编译安装 autoconf ./configure make make install   4、添加link: ln -s /usr/local/bin/git /usr/bin/   5、查看版本号: git --version   6、Git使用教程: 廖雪峰的git教程