View create_100_branches.sh
cd $1 | |
git checkout $2 | |
for i in {1..100} | |
do | |
export NAME=test_node_cache_$i | |
git checkout -b $NAME | |
git push origin $NAME | |
git checkout $2 | |
git branch -D $NAME | |
done |