1
0
mirror of https://github.com/nvbn/thefuck.git synced 2025-03-21 01:59:10 +00:00
thefuck/thefuck/rules/git_branch_list.py
2015-07-17 13:11:36 +02:00

13 lines
331 B
Python

from thefuck import utils, shells
@utils.git_support
def match(command, settings):
# catches "git branch list" in place of "git branch"
return command.script.split() == 'git branch list'.split()
@utils.git_support
def get_new_command(command, settings):
return shells.and_('git branch --delete list', 'git branch')