随笔分类 -  git

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 搬砖小将 阅读(25) 评论(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 搬砖小将 阅读(156) 评论(0) 推荐(0)
git 批量clone bat脚本
摘要:项目模块太多,一键clone @echo off echo start git clone pause for /f %%i in (list.txt) do git clone https://cn.yqclu/gitlab/itst/xxxgroup/%%i.git %%i echo 'git 阅读全文
posted @ 2022-03-04 17:05 搬砖小将 阅读(535) 评论(0) 推荐(0)
git 常用命令
摘要:git branch -a #查看分支 git branch #当前分支 git checkout dev #切换 git status -s git clone git pull origin dev git diff git add git add -A git commit -m '第一次版本 阅读全文
posted @ 2022-02-25 14:24 搬砖小将 阅读(40) 评论(0) 推荐(0)
git配置ssl
摘要:git config --global user.name "wdy" 配置用户名 git config --global user.email "1373822758@qq.com" 配置邮箱 ssh-keygen -t rsa -C "1373822758@qq.com" 生成公钥和私钥 按3次 阅读全文
posted @ 2022-02-24 15:30 搬砖小将 阅读(993) 评论(0) 推荐(0)