Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tusharmakkar08/git-del-br
Deleting Merged Branches
https://github.com/tusharmakkar08/git-del-br
branching delete git git-del
Last synced: 25 days ago
JSON representation
Deleting Merged Branches
- Host: GitHub
- URL: https://github.com/tusharmakkar08/git-del-br
- Owner: tusharmakkar08
- License: mit
- Created: 2016-06-29T11:10:42.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2019-08-25T18:39:41.000Z (about 5 years ago)
- Last Synced: 2024-10-10T09:17:12.499Z (29 days ago)
- Topics: branching, delete, git, git-del
- Language: Python
- Size: 31.3 KB
- Stars: 7
- Watchers: 3
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# git-del-br
[![GitHub issues](https://img.shields.io/github/issues/tusharmakkar08/git-del-br.svg)](https://github.com/tusharmakkar08/git-del-br/issues)
[![GitHub stars](https://img.shields.io/github/stars/tusharmakkar08/git-del-br.svg)](https://github.com/tusharmakkar08/git-del-br/stargazers)
[![GitHub license](https://img.shields.io/badge/license-MIT-blue.svg)](https://raw.githubusercontent.com/tusharmakkar08/git-del-br/master/LICENSE)
[![PyPI](https://img.shields.io/pypi/v/git-del-br.svg?maxAge=2592000)](https://pypi.python.org/pypi/git-del-br)> Deleting Merged Branches
# Usage:
usage: git_del_br.py [-h] [-ls] [-r] [-l] [-a] [-t time] [-br branch]
[-pre prefix] [-suf suffix] [-re regex]Tool for deleting remote and local merged branches from Git
optional arguments:
-h, --help show this help message and exit
-ls, --list Lists the branches (not delete)
-r, --remote remove merged branches
-l, --local Remove local branches
-a, --all Removes both local and remote merged branches
-t time, --time time All branches after t-time which the branch is merged
(in days) default = -1 means infinite days
-br branch, --branch branch
Branch from which other branches will be analysed
(default = current_branch)
-pre prefix, --prefix prefix
Filter branches based on prefix
-suf suffix, --suffix suffix
Filter branches based on suffix
-re regex, --regex regex
Filter branches based on regexYou can find more details about the project [here](http://tusharmakkar08.github.io/git-del-br).
## Examples
* For listing remote merged branches which haven't been touched since past 3 months (last commit was 3 months ago)
git-del-br -ls -r -t=90
For deleting those branches
git-del-br -r -t=90
* For listing local branches which start with `dev` prefix
git-del-br -ls -l -pre='dev'
For deleting those branches
git-del-br -l -pre='dev'
* You can use regex too. For example: For deleting all branches except `release` branch:
git-del-br -l -re='^(?!release).*'
## INSTALL
You can install this from pip using `pip install git-del-br`.
## CONTRIBUTION
Fork the project. Create a branch from `master` or `gh-pages` and submit a PR to the same.
## LICENSE
The mighty MIT license. Please check `LICENSE` for more details.