Skip to content

Instantly share code, notes, and snippets.

@agvald
Created August 29, 2018 20:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save agvald/95febc01d3dd774ea743eef84e38bff7 to your computer and use it in GitHub Desktop.
Save agvald/95febc01d3dd774ea743eef84e38bff7 to your computer and use it in GitHub Desktop.
Goes to a folder and creates 100 branches, pushed them and deletes them locally
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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment