mirror of
https://github.com/nvbn/thefuck.git
synced 2025-11-19 16:26:03 +00:00
13 lines
331 B
Python
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()[1:] == 'branch list'.split()
|
|
|
|
|
|
@utils.git_support
|
|
def get_new_command(command, settings):
|
|
return shells.and_('git branch --delete list', 'git branch')
|