使用自己搭建的GitLab

2021-10-08 04:13:18 字數 1072 閱讀 4854

http://ip:埠號

使用者名稱root,首次登入會強制使用者修改密碼

安裝git工具

[root@root ~]

# yum install git

生成金鑰檔案
[root@root ~]

# ssh-keygen

[root@root ~]

# cat ./.ssh/id_rsa.pub

新建乙個project , 新增ssh key , 儲存專案位址

# 配置使用git倉庫的人員姓名

[root@root ~]

# git config --global user.name "testname"

# 配置使用git倉庫的人員email,填寫自己的公司郵箱

[root@root ~]

# git config --global user.email "[email protected]"

# 轉殖專案

[root@root ~]

# git clone http://自己的ip/root/iteration.git

# 進入到專案目錄

[root@root ~]

# cd iteration/

# 建立需要上傳到gitlab中的目標檔案

[root@root ~]

# echo "test" > /root/test.sh

# 將目標檔案或者目錄複製到專案目錄下

[root@root ~]

# cp /root/test.sh ./

# 將test.s**件加入到索引中

[root@root ~]

# git add test.sh

# 將test.sh提交到本地倉庫

[root@root ~]

# git commit -m "test.sh"

# 將檔案同步到gitlab伺服器上

[root@root ~]

# git push -u origin master

Docker搭建自己的GitLab

gitlab 是乙個用於倉庫管理系統的開源專案,使用git作為 管理工具,並在此基礎上搭建起來的web服務 docker docker 是乙個開源的應用容器引擎,讓開發者可以打包他們的應用以及依賴包到乙個可移植的容器中,然後發布到任何流行的 linux 機器上,也可以實現虛擬化。容器是完全使用沙箱機...

使用Cenos7搭建自己的GitLab服務

關閉防火牆 暫時關閉防火牆 systemctl stop firewalld 永久關閉防火牆 systemctl disable firewalld安裝postfix來實現郵件通知的功能 sudo yum install postfix sudo systemctl enable postfix s...

使用docker搭建gitlab

github上開源映象位址 建立私有key,生成簽名需要的csr,證書簽名,提供dhe引數而後建立資料夾certs,將dhparam.pem,gitlab.crt,gitlab.key放進去。mv資料夾certs到 opt gitlab data 下。參考 ssl 注 1.gitlab host g...