This commit is contained in:
Klesh Wong 2021-06-19 17:42:39 +08:00
parent bec12cb5c1
commit 530c743a4b

View File

@ -1,6 +1,8 @@
function git_clone_all
for remote_branch in (git branch -r | awk 'NR>1{print $1}')
for remote_branch in (git branch -r | awk '{print $1}')
set local_branch (basename $remote_branch)
git branch --track $local_branch $remote_branch
if not git rev-parse --verify "$local_branch"
git branch --track $local_branch $remote_branch
end
end
end