初始化本地仓库
git initgit add README.mdgit commit -m "first commit"git branch -M mastergit remote add origin git@github.com:XXXXXgit push -u origin master
批量删除分支
远程:git branch -r| grep 'ss-1' | sed 's/origin\///g' | xargs -I {} git push origin :{}
本地:git branch -a | grep 'feature-re-1' | xargs git branch -D