diff options
author | Juri Linkov <juri@linkov.net> | 2022-10-02 21:34:57 +0300 |
---|---|---|
committer | Juri Linkov <juri@linkov.net> | 2022-10-02 21:34:57 +0300 |
commit | c37fda9e3117c8948ee691c79ccf747d45137d97 (patch) | |
tree | 7f2ef8aaecc3956aab27fd22bd23df813f103072 /doc/emacs/maintaining.texi | |
parent | d4f56e96665f1d2d98ce645d32d587013e8b8116 (diff) | |
download | emacs-c37fda9e3117c8948ee691c79ccf747d45137d97.tar.gz emacs-c37fda9e3117c8948ee691c79ccf747d45137d97.tar.bz2 emacs-c37fda9e3117c8948ee691c79ccf747d45137d97.zip |
In vc-git-log-incoming use the repository in the command "fetch" (bug#50340)
* lisp/vc/vc-git.el (vc-git-log-incoming): Use repository part
from non-nil remote-location in the command "fetch".
* lisp/vc/vc.el (vc-log-incoming, vc-log-outgoing): Mention in
docstrings and prompts that REMOTE-LOCATION can be a remote branch name.
* doc/emacs/maintaining.texi (VC Change Log): For commands
vc-log-incoming and vc-log-outgoing, use the term "remote location"
instead of "repository".
Diffstat (limited to 'doc/emacs/maintaining.texi')
-rw-r--r-- | doc/emacs/maintaining.texi | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/doc/emacs/maintaining.texi b/doc/emacs/maintaining.texi index 6ceda6d7a5c..6857e67def9 100644 --- a/doc/emacs/maintaining.texi +++ b/doc/emacs/maintaining.texi @@ -1041,13 +1041,14 @@ revision at point. A second @key{RET} hides it again. (@code{vc-log-incoming}) command displays a log buffer showing the changes that will be applied, the next time you run the version control system's pull command to get new revisions from another -repository (@pxref{Pulling / Pushing}). This other repository is the default +remote location (@pxref{Pulling / Pushing}). This other remote location is the default one from which changes are pulled, as defined by the version control system; with a prefix argument, @code{vc-log-incoming} prompts for a -specific repository. Similarly, @kbd{C-x v O} +specific remote location. Similarly, @kbd{C-x v O} (@code{vc-log-outgoing}) shows the changes that will be sent to -another repository, the next time you run the push command; with a -prefix argument, it prompts for a specific destination repository. +another remote location, the next time you run the push command; with a +prefix argument, it prompts for a specific destination that +in case of some version control system can be a branch name. @cindex VC log buffer, commands in @cindex vc-log buffer |