1
0
mirror of https://github.com/nvbn/thefuck.git synced 2025-02-20 20:09:07 +00:00

#550: Use shell.and_

This commit is contained in:
Vladimir Iakovlev 2016-09-20 00:28:09 +02:00
parent 6e2b82911f
commit 9ac47d8f78

View File

@ -11,4 +11,4 @@ def match(command):
@git_support
def get_new_command(command):
return 'git stash && git pull && git stash pop'
return shell.and_('git stash', 'git pull', 'git stash pop')