[原創: 雲服務器實戰系列5] 項目初始化: Centos7 Git Server配置

上一篇[原創: 雲服務器實戰系列4] 域名購買&解析vue

[原創: 雲服務器實戰系列3] 基礎軟件安裝&環境配置中, 咱們已經完成了對Centos7中基礎的軟件環境搭建. 此時咱們將進行項目開始前的準備工做:git

  1. 在雲服務器中建立git庫, 用於存儲代碼
  2. 本地克隆
  3. 建立基本的先後端代碼
  4. 完成雲服務器端git hook相關配置, 以實現代碼提交後可以自動執行相關部署工做

Git Server配置免密登陸

1. 客戶端生成公鑰

打開Git bash, 輸入如下指令:sql

ssh-keygen -t rsa -C
複製代碼

此時, 會在~/.ssh/目錄下生成一個默認的id_rsa.pub文件.shell

2. Centos7 服務器端配置

這裏省略了git的安裝過程, 相關安裝過程能夠參考: [原創: 雲服務器實戰系列3] 基礎軟件安裝&環境配置django

在雲服務器端執行如下操做後端

1) 建立git用戶

adduser git
複製代碼

2) 配置git用戶的ssh訪問設置

cd /home/git
mkdir .ssh
複製代碼

3) 建立.ssh文件夾

chmod 700 .ssh 
複製代碼

將.ssh文件夾權限設爲700, 即容許本用戶和root用戶擁有讀, 寫, 執行權限bash

4) 在.ssh文件夾內建立authorized_keys

touch .ssh/authorized_keys
chmod 600 .ssh/authorized_keys
複製代碼

5) 將文件夾受權給git用戶和git組

cd /home
chown -R git:git git
複製代碼

6) 將存放git庫文件夾歸爲git全部

chown git:git /usr/local/projects/*
複製代碼

7) 禁用shell登陸

若是但願git用戶不能登陸shell,就要修改git用戶的權限.服務器

vi /etc/passwd
複製代碼

app

git:x:1000:1000::/home/git:/bin/bash
複製代碼

改成ssh

git:x:1000:1000::/home/git:/bin/git-shell
複製代碼

8) 將第2步在客戶端生成的公鑰寫入/home/git/.ssh/authorized_keys 文件內

vi /home/git/.ssh/authorized_keys
複製代碼

將客戶端生成的公鑰文件id_rsa.pub內容插入到authorized_keys

3. 在雲服務器建立git庫

[account@yunServer projects]# git init --bare bt_django.git
Initialized empty Git repository in /usr/local/projects/bt_django.git/
[account@yunServer projects]# git init --bare ft_vue.git
Initialized empty Git repository in /usr/local/projects/ft_vue.git/
[account@yunServer projects]# dir
bt_django.git  ft_vue.git
[account@yunServer projects]# chown -R git:git /usr/local/projects/*
複製代碼

4. 本地克隆代碼

James@James-PC MINGW64 /d/Projects
$ git clone git@120.x.x.1:/usr/local/projects/bt_django.git
Cloning into 'bt_django'...
warning: You appear to have cloned an empty repository.

James@James-PC MINGW64 /d/Projects
$ git clone git@120.x.x.1:/usr/local/projects/ft_vue.git
Cloning into 'ft_vue'...
warning: You appear to have cloned an empty repository.
複製代碼

Git Server hook配置

1. 初始化django工程以及雲服務器django部署環境搭建

詳細的步驟, 請閱[原創: 雲服務器實戰系列6] CentOS7 + Python3 + Django + Mysql部署環境搭建&django項目初始化

2. git hook配置

!未完, 待續!

相關文章
相關標籤/搜索