方案1:【快速】单个/多个项目提交到一个已有地址
步骤:
1,在git仓库,创建新的地址
2,在代码所在文件夹,编辑脚本
2.1,获得所有文件名:编写bat脚本,获得所有文件名称【非必须】;
dir *.* /b/s>test.txt
获取所有文件之后,复制对应的文件名;
2.2,编写bat脚本:
git init
git remote add origin 你的git地址
git add wx_changan/ wx_changan/
git add 其他的项目
git commit -m "提交的备注"
git push -u origin master
pause