linux安装Git
yum -y install gcc openssl openssl-devel curl curl-devel unzip perl perl-devel expat expat-devel zlib zlib-devel asciidoc xmlto gettext-devel openssh-clients
[root@localhost local]# wget https://github.com/git/git/archive/v2.21.0.tar.gz
[root@localhost local]# cd git-2.21.0/
[root@localhost git-2.21.0]# make prefix=/usr/local/git all
耐心等待编译即可
安装Git至/usr/local/git路径,命令为 make prefix=/usr/local/git install
配置环境变量vim /etc/profile 加入:PATH=$PATH:/usr/local/git/bin
git --version ,查看安装的git版本,校验通过,安装成功。
第二种,直接yum安装
[root@localhost ~]# yum install -y git
git数据交互是基于ssh的,查看是否开启了ssh服务,
[root@localhost ~]# ps -ef|grep sshd
root 1841 1 0 06:17 ? 00:00:00 /usr/sbin/sshd
root 4484 1841 0 07:40 ? 00:00:00 sshd: root@pts/0
root 4517 4488 5 07:48 pts/0 00:00:00 grep sshd
[root@localhost ~]# git --version
git version 1.7.1
服务器端创建 git 用户,用来管理 Git 服务,并为 git 用户设置密码
配置用户名、邮箱、Windows提交到Linux上是否自动转换换行符、字符集
[root@localhost ~]# git config --global user.name "hu"
[root@localhost ~]# git config --global user.email "404914989@qq.com"
[root@localhost ~]# git config --global core.autocrlf false
[root@localhost ~]# git config --global gui.encoding utf-8
此时$HOME目录下会新建一个.gitconfig文件
创建用户专门管理代码仓库
[root@localhost ~]# useradd -m git
[root@localhost ~]# passwd git
禁止 git 用户 ssh 登录服务器
编辑 /etc/passwd
git:x:502:504::/home/git:/bin/bash修改为git:x:502:504::/home/git:/bin/git-shell
建立一个共享的仓库,只能接受push/pull ,不能本地commit
[root@localhost git]# mkdir data
[root@localhost git]# cd data
[root@localhost data]# git init --bare
Initialized empty Git repository in /home/git/data/
赋权
[root@localhost git]# chown -R git:git data/
客户端clone远程仓库
在客户端中进如一个地址右键Git Bash进入
克隆
$ git clone git@192.168.1.110:/home/git/data
Cloning into 'data'...
当第一次连接到目标 Git 服务器时会得到一个提示:
The authenticity of host '192.168.1.110 (192.168.1.110)' can't be established.
RSA key fingerprint is SHA256:iSLdvstPeZt4ZCsHQ/muhRpPPJmBhJKnB/rqOfRSJEc.
Are you sure you want to continue connecting (yes/no)? yes
Warning: Permanently added '192.168.1.110' (RSA) to the list of known hosts.
git@192.168.1.110's password:
warning: You appear to have cloned an empty repository.
此时 C:\Users\用户名\.ssh 下会多出一个文件 known_hosts,以后在这台电脑上再次连接目标 Git 服务器时不会再提示上面的语句。
后面提示要输入密码,可以采用 SSH 公钥来进行验证。
通过SSH认证
在客户端创建公钥和私钥,例如在Windows上安装git操作,打开Git Bash
$ ssh-keygen -t rsa -C "404914989@qq.com"
Generating public/private rsa key pair.
Enter file in which to save the key (/c/Users/Administrator/.ssh/id_rsa):
/c/Users/Administrator/.ssh/id_rsa already exists.
Overwrite (y/n)? y
Enter passphrase (empty for no passphrase):
Enter same passphrase again:
Your identification has been saved in /c/Users/Administrator/.ssh/id_rsa.
Your public key has been saved in /c/Users/Administrator/.ssh/id_rsa.pub.
The key fingerprint is:
SHA256:o794/GehcD8LpFmAkhNOQe/sX54NLzKfGoXaSeNJlC0 404914989@qq.com
The key's randomart image is:
+---[RSA 2048]----+
| .=. |
| o + . o |
| = o E . |
| = . + |
| o S + |
| . B.@. . |
| +.Oo+o . |
| +=+oB= |
| ..=B*++o |
+----[SHA256]-----+
此时 C:\Users\用户名.ssh 下会多出两个文件 id_rsa 和 id_rsa.pub
id_rsa 是私钥
id_rsa.pub 是公钥
服务端git开启rsa认证
[root@localhost ~]# vim /etc/ssh/sshd_config
开打如下行:
RSAAuthentication yes
PubkeyAuthentication yes
AuthorizedKeysFile .ssh/authorized_keys
重启:
[root@localhost ~]# /etc/rc.d/init.d/sshd restart
Stopping sshd: [ OK ]
Starting sshd: [ OK ]
公钥的存放路径 .ssh/authorized_keys实际上是 $Home/.ssh/authorized_keys,由于管理 Git 服务的用户是 git,所以实际存放公钥的路径是 /home/git/.ssh/authorized_keys。
[root@localhost git]# mkdir .ssh
[root@localhost git]# ls -a
. .. .bash_logout .bash_profile .bashrc data .gnome2 .mozilla .ssh
修改目录所有者:因为我们创建了git用户管理代码,把.ssh的权限设置为git。用户组也是git。
[root@localhost git]# chown -R git:git .ssh
[root@localhost git]# ll -a
....
drwxr-xr-x. 2 git git 4096 Apr 6 04:49 .ssh
将客户端公钥导入服务器端 /home/git/.ssh/authorized_keys 文件
在客户端通过Git Bash操作如下:
$ ssh git@192.168.1.110 'cat >> .ssh/authorized_keys' < ~/.ssh/192.168.1.110.git.hub.pub
git@192.168.1.110's password:
需要输入服务端git密码
或者直接创建文件 ,复制公钥保存文件的方式:
[root@localhost git]# cd .ssh/
[root@localhost .ssh]# touch authorized_keys
[root@localhost .ssh]# cd ..
将客户端的公钥id_rsa.pub内容导入服务器authorized_keys文件里
[root@localhost git]# vim .ssh/authorized_keys
回到服务器查看否存在 authorized_keys 文件
[root@localhost git]# ll .ssh/
-rw-rw-r--. 1 git git 742 Apr 6 04:57 authorized_keys
设置权限:
修改 .ssh 目录的权限为 700,修改 .ssh/authorized_keys 文件的权限为 600
[root@localhost git]# chmod 700 .ssh
[root@localhost git]# cd .ssh/
[root@localhost .ssh]# chmod 600 authorized_keys
再次clone测试
$ git clone git@192.168.1.110:/home/git/data
Cloning into 'data'...
warning: You appear to have cloned an empty repository.
也可以通过界面工具clone
上传项目到git
例如windows上安装好git,进入需要上传的项目里,如:G:\Java\idea-maindir\maven-jenkins-test
右键Git Bash进入命令行
1、把项目变成可以提交的项目
$ git init
2、把文件添加到版本库中,使用命令 git add .添加到暂存区里面去,不要忘记后面的小数点".",意为添加文件夹下的所有文件
$ git add .
3、用命令 git commit告诉Git,把文件提交到仓库。引号内为提交说明
$ git commit -m 'first commit'
4、关联到远程库
$ git remote add origin 你的远程库地址
如:$ git remote add origin git@192.168.1.110:/home/git/data
如果出错
$ git remote add origin git@192.168.1.110:/home/git/data
fatal: remote origin already exists.
先删除远程 Git 仓库
$ git remote rm origin
再添加远程 Git 仓库
如果执行 git remote rm origin 报错的话,我们可以手动修改gitconfig文件的内容
$ vi .git/config
把 [remote "origin"] 那一行删掉就好了。
5、获取远程库与本地同步合并(如果远程库不为空必须做这一步,否则后面的提交会失败)
$ git pull --rebase origin master
6、把本地库的内容推送到远程,使用 git push命令,实际上是把当前分支master推送到远程。
$ git push -u origin master
git@192.168.1.110's password:
Enumerating objects: 19, done.
Counting objects: 100% (19/19), done.
Delta compression using up to 4 threads
Compressing objects: 100% (15/15), done.
Writing objects: 100% (19/19), 5.59 KiB | 817.00 KiB/s, done.
Total 19 (delta 0), reused 0 (delta 0)
To 192.168.1.110:/home/git/data
* [new branch] master -> master
Branch 'master' set up to track remote branch 'master' from 'origin'.
7、状态查询命令
$ git status
注意:
客户端使用Git,客户机安装git后,创建公钥和私钥,公钥添加到服务器ssh中。
和使用GitHub类似,比如登录GitHub,点击setting>SSH and GPG keys>New SSH Key 将生成的密钥复制到Key中即可
测试是否配置成功ssh -T git@github.com
Hi RoninLee! You’ve successfully authenticated, but GitHub does not provide shell access.
出现这样一段话,即证明配置成功。