08 2022 档案

git命令整理
摘要:git branch -a #查看分支 git branch #*当前分支 git checkout dev #切换 git fetch #同步远程分支 git status -s git clone git pull origin dev git diff git add git add -A g 阅读全文
posted @ 2022-08-29 15:47 搬砖小将 阅读(28) 评论(0) 推荐(0)
git批处理脚本
摘要:项目模块太多,脚本执行git命令 1.git clone(clone.bat) @echo off echo start git clone pause for /f %%i in (list.txt) do git clone https://域名/gitlab/itst/某一个group/%%i 阅读全文
posted @ 2022-08-29 15:37 搬砖小将 阅读(164) 评论(0) 推荐(0)