1.拉取远程所有分支
git branch -r | grep -v '\->' | sed "s,\x1B\[[0-9;]*[a-zA-Z],,g" | while read remote; do git branch --track "${remote#origin/}" "$remote"; done
git fetch --all
git pull --all
2.放弃所有本地更改
git checkout .
1.拉取远程所有分支
git branch -r | grep -v '\->' | sed "s,\x1B\[[0-9;]*[a-zA-Z],,g" | while read remote; do git branch --track "${remote#origin/}" "$remote"; done
git fetch --all
git pull --all
2.放弃所有本地更改
git checkout .
本文标题:Git 常用命令记录
本文链接:https://www.haomeiwen.com/subject/faezfjtx.html
网友评论