Git从远程仓库获取所有分支

# 先从远程git clone
git clone "仓库地址"
# 切换到代码根目录 执行
git branch -r | grep -v '\->' | while read remote; do git branch --track "${remote#origin/}" "$remote"; done
git fetch --all
git pull --all

感谢原文

上一篇:delphi 生成验证码


下一篇:关于git的食用