git写个脚本提交

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了git写个脚本提交相关的知识,希望对你有一定的参考价值。

因为是ios项目,就我自己一个人写的。git初级使用阶段,感觉敲指令太麻烦,所以尝试写个sh脚本。

 

内容如下:

#!/bin/sh

cd /Users/username/Desktop/workspace/verycloud/ios/proj
ls
git branch
git add -A
echo "输入您的commit文字"
read $a
git commit -m "shell提交:$a"

echo "需要push到:b-someone-edit分支则输入y"

read choose

if [ $choose = "y" ];then
echo "正在执行命令:git push origin b-someone-edit "
git push origin b-someone-edit
else
echo "您没有push到服务器"
fi

 

这货是懒人,这货是懒人,这货是懒人……

 

以上是关于git写个脚本提交的主要内容,如果未能解决你的问题,请参考以下文章

从脚本执行git提交

git之使用shell脚本提交代码

git自动提交脚本(供参考)

sh 找到可以应用哪个Git提交补丁。补丁文件作为此脚本的参数给出。脚本在找到提交时停止

使用 PHP 脚本作为提交后挂钩、触发 bash 脚本、执行 git-pull?

合并提交后在 git ci/cd 上触发脚本