主頁(yè) > 知識(shí)庫(kù) > shell腳本一鍵同時(shí)推送代碼至github和gitee的解決辦法

shell腳本一鍵同時(shí)推送代碼至github和gitee的解決辦法

熱門(mén)標(biāo)簽:地圖標(biāo)注審核周期 電話(huà)機(jī)器人對(duì)家居行業(yè)幫助大嗎 如何申請(qǐng)400的電話(huà)呀 合肥電銷(xiāo)外呼系統(tǒng)供應(yīng)商 黑暗之魂3地圖標(biāo)注 電商外呼系統(tǒng)排名 沈陽(yáng)ai電銷(xiāo)智能機(jī)器人 AI智能電銷(xiāo)機(jī)器人壞處 蘭州電銷(xiāo)機(jī)器人加盟

自己寫(xiě)的東西,要同時(shí)推送多個(gè)git地址,解決辦法如下:

1.先要初始化你的git

             進(jìn)入自己的項(xiàng)目目錄,然后執(zhí)行 git  init

cd /app/code/go-study
git init

2.執(zhí)行以下腳本:

#!/bin/bash
#author Oliver
#since 2020-09-03 15:24:31
 
git remote rm origin
#replace your git location
git remote add origin 'https://github.com/**********'
git pull remote master
git add .
git commit -m $1
git push origin master --force
if [ "$?" = "0" ]
then
 echo -e "\033[42;34m push to github success! \033[0m"
else
 echo -e "\033[41;30m push to github fail! \033[0m"
 exit 1
fi
 
git remote rm origin
#replace your git location
git remote add origin 'https://gitee.com/**********'
git pull remote master
git add .
git commit -m $1
git push origin master --force
 
if [ "$?" = "0" ]
then
 echo -e "\033[42;34m push to gitee success! \033[0m"
else
 ech -e "\033[41;30m push to gitee fail! \033[0m"
 exit 1
fi

3.執(zhí)行shell腳本,可以傳一個(gè)參數(shù)是git 的提交的msg:

./shell.sh "提交代碼"

PS:下面看下git強(qiáng)制覆蓋本地代碼和強(qiáng)制推送本地到遠(yuǎn)程倉(cāng)庫(kù)

1.git強(qiáng)制覆蓋本地文件(與git遠(yuǎn)程倉(cāng)庫(kù)保持一致):

git fetch --all
git reset --hard origin/master
git pull
git強(qiáng)制覆蓋本地命令(單條執(zhí)行):
git fetch --all  git reset --hard origin/master  git pull

2.git強(qiáng)制推送本地代碼到遠(yuǎn)程倉(cāng)庫(kù)

切換到對(duì)應(yīng)的要上傳文件的文件夾下面執(zhí)行命令

git push -u origin develop

總結(jié)

到此這篇關(guān)于shell腳本一鍵同時(shí)推送代碼至github和gitee的文章就介紹到這了,更多相關(guān)shell推送代碼至github和gitee內(nèi)容請(qǐng)搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!

您可能感興趣的文章:
  • Shell腳本中管道的幾種使用實(shí)例講解
  • Shell腳步攻略之管道重定向基礎(chǔ)
  • PowerShell管道入門(mén)必看篇(管道例子大全)
  • linux shell 管道命令(pipe)使用及與shell重定向區(qū)別
  • PowerShell實(shí)現(xiàn)按條件終止管道的方法
  • PowerShell中終止管道的方法
  • PowerShell入門(mén)教程之PowerShell管道介紹
  • Windows Powershell導(dǎo)出管道結(jié)果
  • Windows Powershell過(guò)濾管道結(jié)果
  • 如何利用 tee 命令調(diào)試shell腳本中的管道

標(biāo)簽:黔南 淮南 通遼 河北 河池 常州 隴南 黔南

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《shell腳本一鍵同時(shí)推送代碼至github和gitee的解決辦法》,本文關(guān)鍵詞  shell,腳本,一鍵,同時(shí),推送,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問(wèn)題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《shell腳本一鍵同時(shí)推送代碼至github和gitee的解決辦法》相關(guān)的同類(lèi)信息!
  • 本頁(yè)收集關(guān)于shell腳本一鍵同時(shí)推送代碼至github和gitee的解決辦法的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章