Merge pull request #3995 from mkllnk/how-to-not-archive-branches

Remove obsolete script to archive branches
This commit is contained in:
Pau Pérez Fabregat
2019-07-03 16:23:15 +02:00
committed by GitHub

View File

@@ -1,10 +0,0 @@
#!/bin/bash
# Archive an old branch as a tagged named archive/branch-name to declutter the branch list
BRANCH_NAME=$1
git tag archive/$BRANCH_NAME $BRANCH_NAME
git checkout -q archive/$BRANCH_NAME
git branch -d $BRANCH_NAME
git checkout -q master