Files
thefuck/thefuck/rules/git_stash.py
T
2015-05-13 09:47:31 +02:00

9 lines
319 B
Python

def match(command, settings):
# catches "Please commit or stash them" and "Please, commit your changes or
# stash them before you can switch branches."
return 'git' in command.script and 'or stash them' in command.stderr
def get_new_command(command, settings):
return 'git stash && ' + command.script