123456789101112 |
- diff --git a/autoload/fugitive.vim b/autoload/fugitive.vim
- index 04ed1e9..256e252 100644
- --- a/autoload/fugitive.vim
- +++ b/autoload/fugitive.vim
- @@ -2938,6 +2938,7 @@ function! fugitive#BufReadStatus(...) abort
- if len(pull_ref) && get(props, 'branch.ab') !~# ' -0$'
- call s:AddLogSection('Unpulled from ' . pull_short, s:QueryLogRange(head, pull_ref))
- endif
- + call s:AddLogSection('Pushed to ' . push_short, s:QueryLogRange('origin/HEAD', unique_push_ref))
-
- setlocal nomodified readonly noswapfile
- doautocmd BufReadPost
|