windows git一键push脚本
程序员文章站
2022-07-15 15:37:07
...
前景:
每次git push的时候都要输入重复的命令,无形中也浪费时间。直接来一个键push.bat脚本省时省力。
bat代码如下:
echo "Start submitting code to the local repository"
echo "The current directory is:%cd%"
git add *
echo;
echo "Commit the changes to the local repository"
set now=%date% %time%
echo %now%
git commit -m "%now%"
echo;
echo "Commit the changes to the remote git server"
git push
echo;
echo "Batch execution complete!"
echo;
上一篇: maven 安装jar到本地仓库
下一篇: maven安装JAR到本地仓库
推荐阅读
-
windows git一键push脚本
-
windows环境脚本一键拉git代码maven打包java项目
-
windows系统一键关停系统的脚本
-
script_tool_for_windows.bat Windows 环境下的 hosts 一键部署脚本
-
Windows中git脚本下载分支的github代码
-
使用 windows bat 脚本命令一键启动MySQL服务的方法
-
windows 一键更新 当前文件夹下的多个git项目
-
script_tool_for_windows.bat Windows 环境下的 hosts 一键部署脚本
-
阿里云服务器windows系统C盘一键清理脚本
-
Windows中git脚本下载分支的github代码