1
0
mirror of https://github.com/nvbn/thefuck.git synced 2025-11-14 13:55:58 +00:00
Files
thefuck/thefuck/rules/git_branch_delete.py
2015-07-24 00:39:56 +03:00

14 lines
354 B
Python

from thefuck import utils
from thefuck.utils import replace_argument
@utils.git_support
def match(command, settings):
return ('branch -d' in command.script
and 'If you are sure you want to delete it' in command.stderr)
@utils.git_support
def get_new_command(command, settings):
return replace_argument(command.script, '-d', '-D')