添加环境变量:D:\Git\Git\cmd
环境变量添加完毕后就可以直接在命令框使用git命令了
脚本实现
实现一键完成远程仓库的更新
@echo off
git add .
git commit -m "daily push data-structure-and-algorithms"
git push
echo push respostory successfully
pause
如果需要传递参数(提交信息)
@echo off
git add .
git commit -m "%1"//待传入的参数
git push
echo push respostory successfully
pause
需在当前文件夹建立的命令框调用