commit 3391eaf83470d3f9661a62caf01dc84c9a4bc062 from: Omar Polo date: Tue Feb 01 08:55:36 2022 UTC fix vc-got-incoming docstring * style: don't go over 80 cols and keep the first line as a full sentence. * correct the description: it diffs the *incoming* history, it doesn't consider the edits on the work tree at all! commit - 95782f5b1edee33f7f2f10547b4ffb50ff9dc034 commit + 3391eaf83470d3f9661a62caf01dc84c9a4bc062 blob - ff59b602ab7d4cf4539bc61d5d1189a7351a3b87 blob + 7ec8c822578218990016facf6d1a9af8f9ad780b --- vc-got.el +++ vc-got.el @@ -699,7 +699,8 @@ START-REVISION." (vc-got--log nil nil nil rl)))) (defun vc-got-incoming (buffer remote-location) - "Fill BUFFER with the diff between the REMOTE-LOCATION and the local worktree branch." + "Fill BUFFER with the incoming diff from REMOTE-LOCATION. +That is, the diff between REMOTE-LOCATION and the local repository." (let ((rl (if (or (not remote-location) (string-empty-p remote-location)) (concat "origin/" (vc-got--current-branch)) remote-location))