Merge pull request #598 from josephfrazier/git_add_force

Add git_add_force rule
This commit is contained in:
Vladimir Iakovlev
2017-01-30 13:02:20 +01:00
committed by GitHub
3 changed files with 36 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
from thefuck.utils import replace_argument
from thefuck.specific.git import git_support
@git_support
def match(command):
return ('add' in command.script_parts
and 'Use -f if you really want to add them.' in command.stderr)
@git_support
def get_new_command(command):
return replace_argument(command.script, 'add', 'add --force')