1234567891011121314 |
- diff --git a/autoload/fugitive.vim b/autoload/fugitive.vim
- index ce16048..2182c1b 100644
- --- a/autoload/fugitive.vim
- +++ b/autoload/fugitive.vim
- @@ -2906,6 +2906,9 @@ function! fugitive#BufReadStatus(...) abort
- if len(pull) && get(props, 'branch.ab') !~# ' -0$'
- call s:AddLogSection('Unpulled from ' . pull, [head . '..' . pull])
- endif
- + if len(push) && push ==# pull
- + call s:AddLogSection('Pushed to ' . push, ['origin/HEAD..' . push])
- + endif
-
- setlocal nomodified readonly noswapfile
- doautocmd BufReadPost
|