From: Dmitry Gutov <dgutov@yandex.ru>
To: Dima Kogan <dima@secretsauce.net>
Cc: 51497@debbugs.gnu.org, Lars Ingebrigtsen <larsi@gnus.org>,
Wolfgang Scherer <wolfgang.scherer@gmx.de>
Subject: bug#51497: 29.0.50; (vc-print-log) broken over TRAMP
Date: Wed, 3 Nov 2021 05:03:56 +0300 [thread overview]
Message-ID: <60fea707-a9b2-d9f4-cc45-ffd4539887b6@yandex.ru> (raw)
In-Reply-To: <87pmrl8yhy.fsf@secretsauce.net>
[-- Attachment #1: Type: text/plain, Size: 1068 bytes --]
On 31.10.2021 09:58, Dima Kogan wrote:
> Note the :(literal) stuff. This is what was added in the commit that the
> bisection found to be the cause of the issue. I can try to run this
> command directly (outside of emacs) on the target box:
>
> $ git --no-pager ls-files -c -z -- ':(literal)FILE.c' </dev/null
>
> fatal: Invalid pathspec magic 'literal' in ':(literal)FILE.c'
>
> The issue is that this target box has a version of git too old to know
> about :(literal):
>
> kogan@aargh:~/stereo-server$ git --version
> git version 1.8.3.1
Sounds like CentOS 7. Released 7 years ago, but updated last year, even.
> Yeah, it's ancient, but I don't control this particular machine, and I
> don't think basic stuff like "C-x v l" should be non-functional here.
> Can we add some logic to emacs to not hard-depend on this stuff?
Any idea which version of Git introduced literal pathspecs?
The docs on the official website only go back to 2.1.4 (also from 2014),
which had it already.
Anyway, with Michael's code, see the attached patch you can try.
[-- Attachment #2: no-literal-pathspecs-on-centos.diff --]
[-- Type: text/x-patch, Size: 2651 bytes --]
diff --git a/lisp/vc/vc-git.el b/lisp/vc/vc-git.el
index 3f89fad235..80455b2010 100644
--- a/lisp/vc/vc-git.el
+++ b/lisp/vc/vc-git.el
@@ -249,7 +249,9 @@ vc-git--literal-pathspec
;; Expand abbreviated file names.
(when (file-name-absolute-p file)
(setq file (expand-file-name file)))
- (concat ":(literal)" (file-local-name file))))
+ (if (version<= "2.1.4" (vc-git--program-version))
+ (concat ":(literal)" (file-local-name file))
+ (file-local-name file))))
(defun vc-git--literal-pathspecs (files)
"Prepend :(literal) path magic to FILES."
@@ -293,18 +295,32 @@ vc-git--state-code
(defvar vc-git--program-version nil)
(defun vc-git--program-version ()
- (or vc-git--program-version
- (let ((version-string
- (vc-git--run-command-string nil "version")))
- (setq vc-git--program-version
- (if (and version-string
- ;; Git for Windows appends ".windows.N" to the
- ;; numerical version reported by Git.
- (string-match
- "git version \\([0-9.]+\\)\\(\\.windows\\.[0-9]+\\)?$"
- version-string))
- (match-string 1 version-string)
- "0")))))
+ (let ((current
+ (if (file-remote-p default-directory)
+ (with-connection-local-variables
+ (and (local-variable-p 'vc-git--program-version)
+ vc-git--program-version))
+ vc-git--program-version)))
+ (or current
+ (let ((version-string
+ (vc-git--run-command-string nil "version")))
+ (setq version-string
+ (if (and version-string
+ ;; Git for Windows appends ".windows.N" to the
+ ;; numerical version reported by Git.
+ (string-match
+ "git version \\([0-9.]+\\)\\(\\.windows\\.[0-9]+\\)?$"
+ version-string))
+ (match-string 1 version-string)
+ "0"))
+ (if (file-remote-p default-directory)
+ (let ((profile (gensym "connection-local-profile-")))
+ (connection-local-set-profile-variables
+ profile `((vc-git--program-version . ,version-string))) ;
+ (connection-local-set-profiles
+ (connection-local-criteria-for-default-directory) profile))
+ (setq vc-git--program-version version-string))
+ version-string))))
(defun vc-git--git-status-to-vc-state (code-list)
"Convert CODE-LIST to a VC status.
next prev parent reply other threads:[~2021-11-03 2:03 UTC|newest]
Thread overview: 44+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-10-30 1:24 bug#51497: 29.0.50; (vc-print-log) broken over TRAMP dima
2021-10-30 12:48 ` Lars Ingebrigtsen
2021-10-30 13:21 ` Dmitry Gutov
2021-10-30 19:01 ` Dima Kogan
2021-10-31 0:56 ` Dmitry Gutov
2021-10-31 6:58 ` Dima Kogan
2021-10-31 8:16 ` Michael Albinus
2021-10-31 12:26 ` Dmitry Gutov
2021-10-31 16:05 ` Michael Albinus
2021-11-03 2:00 ` Dmitry Gutov
2021-11-03 17:09 ` Michael Albinus
2021-11-05 2:00 ` Dmitry Gutov
2021-11-03 2:03 ` Dmitry Gutov [this message]
2021-11-03 3:03 ` Dima Kogan
2021-11-03 12:06 ` Dmitry Gutov
2021-11-06 13:22 ` Dmitry Gutov
2021-11-06 15:51 ` Eli Zaretskii
2021-11-06 19:44 ` Dmitry Gutov
2021-11-06 19:52 ` Eli Zaretskii
2021-11-06 22:11 ` Andy Moreton
2021-11-06 22:21 ` Dmitry Gutov
2021-11-06 23:03 ` Andy Moreton
2021-11-07 0:11 ` Dmitry Gutov
2021-11-07 6:47 ` Eli Zaretskii
2021-11-07 10:43 ` Andy Moreton
2021-11-07 22:36 ` Dmitry Gutov
2021-11-08 12:49 ` Eli Zaretskii
2021-11-08 17:30 ` Dmitry Gutov
2021-11-08 18:18 ` Eli Zaretskii
2021-12-23 10:28 ` Lars Ingebrigtsen
2021-12-26 0:53 ` Dmitry Gutov
2021-12-27 1:36 ` Dmitry Gutov
2022-01-03 3:59 ` Dmitry Gutov
2022-01-03 21:15 ` Dima Kogan
2022-01-03 22:51 ` Dmitry Gutov
2022-01-04 3:28 ` Eli Zaretskii
2022-01-05 2:09 ` Dmitry Gutov
2022-01-21 13:50 ` Lars Ingebrigtsen
2022-01-21 14:11 ` Dmitry Gutov
2022-01-03 21:16 ` Andy Moreton
2021-11-07 6:43 ` Eli Zaretskii
2021-11-07 10:45 ` Andy Moreton
2021-11-07 6:31 ` Eli Zaretskii
2021-11-06 22:19 ` Dmitry Gutov
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=60fea707-a9b2-d9f4-cc45-ffd4539887b6@yandex.ru \
--to=dgutov@yandex.ru \
--cc=51497@debbugs.gnu.org \
--cc=dima@secretsauce.net \
--cc=larsi@gnus.org \
--cc=wolfgang.scherer@gmx.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.