diff --git a/thefuck/rules/git_pull_uncommitted_changes.py b/thefuck/rules/git_pull_uncommitted_changes.py index 71db6d8d..8e9a640d 100644 --- a/thefuck/rules/git_pull_uncommitted_changes.py +++ b/thefuck/rules/git_pull_uncommitted_changes.py @@ -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')