sjteresi / TE_Density

Python script calculating transposable element density for all genes in a genome. Publication: https://mobilednajournal.biomedcentral.com/articles/10.1186/s13100-022-00264-4
GNU General Public License v3.0
28 stars 4 forks source link

delete inactive branches #44

Closed teresi closed 8 months ago

teresi commented 3 years ago

use git push to delete remote git push origin --delete <branch_name>

use git branch to delete local git branch -D <branch_name>

also deletes local `git fetch --prune # deletes all locals that are on remote

see git fetch

       -p, --prune
           Before fetching, remove any remote-tracking references that no longer
           exist on the remote. Tags are not subject to pruning if they are fetched
           only because of the default tag auto-following or due to a --tags option.
           However, if tags are fetched due to an explicit refspec (either on the
           command line or in the remote configuration, for example if the remote was
           cloned with the --mirror option), then they are also subject to pruning.
           Supplying --prune-tags is a shorthand for providing the tag refspec.

           See the PRUNING section below for more details.