本地java代碼上傳Gitlab倉庫

實驗目的

將本地寫好的後端Java代碼成功上傳到搭建的Gitlab倉庫java

實驗環境

1.CentOS 7 系統,可鏈接外網
2.Gitlab倉庫已搭建
3.關閉防火牆,加強型git

實驗步驟

1、安裝 gitlab

1.安裝代碼倉庫gitlab

可參考博客https://blog.51cto.com/13760351/2467477後端

2.安裝git

yum install -y gitssh

2、建立ssh key

1.建立祕鑰對

ssh-keygen -t rsa #一路回車便可maven

本地java代碼上傳Gitlab倉庫

2.上傳祕鑰

cat ~/.ssh/id_rsa.pub #查看公鑰ide

本地java代碼上傳Gitlab倉庫

3、gitlab建立新項目

本地java代碼上傳Gitlab倉庫
本地java代碼上傳Gitlab倉庫
本地java代碼上傳Gitlab倉庫

4、本地代碼上傳gitlab

1.參考文檔

本地java代碼上傳Gitlab倉庫

2.先設置用戶和郵箱

git config --global user.name "Administrator"
git config --global user.email "admin@example.com"
git config --listgitlab

3.建立本地代碼倉庫

java 代碼拷貝到Linux系統裏( ylsp-quartz )
cd ylsp-quartz/
touch README.md
git add README.md
git commit -m "add README"blog

4.提交代碼

git init #初始化倉庫
git remote add origin git@192.168.0.120:root/maven-quartz.git #添加代碼路徑
git add . #添加文件
git commit -m "Initial commit" #添加說明
git push -u origin master #推送代碼至master分支rem

出現問題1:

本地java代碼上傳Gitlab倉庫

解決方法:

git add .
git commit -m "Initial commit"
git push -u origin master文檔

出現問題2:

本地java代碼上傳Gitlab倉庫

解決方法:

git config --global user.email "1***2664@qq.com"
git config --global user.name "root"

5.上傳代碼成功以下圖:

本地java代碼上傳Gitlab倉庫

6.關閉流水線腳本自動運行

本地java代碼上傳Gitlab倉庫
本地java代碼上傳Gitlab倉庫

總結:

1.搭建gitlab,安裝Git2.建立ssh key,建立本地代碼庫3.建立gitlab新項目,參考文檔上傳代碼

相關文章
相關標籤/搜索