shell脚本一键同时推送代码至github和gitee

   日期:2020-09-05     浏览:85    评论:0    
核心提示:自己写的东西,要同时推送多个git地址,解决办法如下:1.先要初始化你的git 进入自己的项目目录,然后执行 git initcd /app/code/go-studygit init2.执行以下脚本:#!/bin/bash#author Oliver#since 2020-09-03 15:24:31git remote rm origin#replace your git locationgit remote add origi...

自己写的东西,要同时推送多个git地址,解决办法如下:

 

1.先要初始化你的git

             进入自己的项目目录,然后执行 git  init

cd /app/code/go-study
git init

 

2.执行以下脚本:

#!/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.执行shell脚本,可以传一个参数是git 的提交的msg:

./shell.sh "提交代码"

 

 
打赏
 本文转载自:网络 
所有权利归属于原作者,如文章来源标示错误或侵犯了您的权利请联系微信13520258486
更多>最近资讯中心
更多>最新资讯中心
0相关评论

推荐图文
推荐资讯中心
点击排行
最新信息
新手指南
采购商服务
供应商服务
交易安全
关注我们
手机网站:
新浪微博:
微信关注:

13520258486

周一至周五 9:00-18:00
(其他时间联系在线客服)

24小时在线客服