自己寫(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:
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腳本中的管道