利用
git branch -r |grep -v "master" |awk '{print "git checkout -t " $1}'
重成命令后,执行。
其中,
git checkout -t origin/draft_getrandom
等于
git checkout -b draft_getrandom origin/draft_getrandom
本文共 235 字,大约阅读时间需要 1 分钟。
利用
git branch -r |grep -v "master" |awk '{print "git checkout -t " $1}'
重成命令后,执行。
其中,
git checkout -t origin/draft_getrandom
等于
git checkout -b draft_getrandom origin/draft_getrandom
转载于:https://www.cnblogs.com/yanyichao/p/4378786.html