From b96e1a39676394761a7b2ebd0081fa0973b60304 Mon Sep 17 00:00:00 2001 From: Tim Pope Date: Tue, 31 Aug 2021 17:11:54 -0400 Subject: [PATCH] Update :Gpush FAQ entry to mention :Git! --- README.markdown | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/README.markdown b/README.markdown index 50cb8ea..f572ce2 100644 --- a/README.markdown +++ b/README.markdown @@ -99,14 +99,9 @@ Install using your favorite package manager, or use Vim's built-in package suppo > `:Gfetch`? This behavior was divisive, confusing, and complicated inputting passwords, so -it was removed. Use `:Dispatch git push` for effectively the same behavior, -or provide your own asynchronous `:Gpush` and `:Gfetch` by adding the -following to your vimrc: - - command! -bang -bar -nargs=* Gpush execute 'Dispatch -dir=' . - \ fnameescape(FugitiveGitDir()) 'git push' - command! -bang -bar -nargs=* Gfetch execute 'Dispatch -dir=' . - \ fnameescape(FugitiveGitDir()) 'git fetch' +it was removed. Use `:Git! push` to use Fugitive's own asynchronous +execution, or retroactively make `:Git push` asynchronous by pressing +`CTRL-D`. > So I have a symlink and...