Git tips

4Ark at 
批量删除 git 分支 1git branch -a | grep -e "fix/" | xargs git branch -D 批量添加匹配文件到暂存区 1git status -s -uall | grep .vue | awk '{print $2}' | xargs git add 按最后提交日期排序所有远程分支 1git branch -rv --sort=-committerdate 更多:How can I get a list of Git branches, ordered by most recent commit?更好的 git log1git config --glo……