From: Michael Heerdegen <michael_heerdegen@web.de>
To: Emacs Development <emacs-devel@gnu.org>
Subject: How to get a list of changed files with VC?
Date: Thu, 13 Jul 2017 03:23:40 +0200 [thread overview]
Message-ID: <87lgntdt9f.fsf@drachen> (raw)
Hello,
For el-search' `change' pattern, I need the following functions:
#+begin_src emacs-lisp
(defun el-search--changed-files-in-repo (repo-root-dir &optional commit)
"Return a list of files that changed relative to COMMIT.
COMMIT defaults to HEAD."
(cl-callf or commit "HEAD")
(let ((default-directory repo-root-dir))
(mapcar #'expand-file-name
(split-string
(shell-command-to-string
(format "git diff -z --name-only %s --" (shell-quote-argument commit)))
"\0" t))))
(defun el-search--file-changed-p (file revision)
"Return non-nil when FILE has changed relative to REVISION."
(cl-callf file-truename file)
(when-let ((backend (vc-backend file)))
(ignore-errors
(let ((default-directory (file-name-directory file))
(vc-git-diff-switches nil))
(and
(with-temp-buffer
(= 1 (vc-call-backend backend 'diff (list file) nil revision
(current-buffer))))
(with-temp-buffer
(= 1 (vc-call-backend backend 'diff (list file) revision nil
(current-buffer)))))))))
#+end_src
I didn't find something like this existing in VC (or did I miss it?).
More specific questions about my implementation:
1. The implementation of the first function
`el-search--changed-files-in-repo' is currently git-specific, but I
didn't find a way to implement it with functions that VC defines to make
it work for other version control systems. Any idea?
2. The second function `el-search--file-changed-p' doesn't have this
problem. However, I gained it from trial and error. Does the
implementation make sense? How can I avoid binding vc-git-diff-switches
-> nil (I get an error for some files if I don't). And I also need to
wrap the thing inside `ignore-errors' to avoid a more complicate
`condition-case' where I don't fully understand which errors I need to
catch.
Any help for a better implementation is greatly appreciated.
TIA,
Michael.
next reply other threads:[~2017-07-13 1:23 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-07-13 1:23 Michael Heerdegen [this message]
2017-07-15 17:41 ` How to get a list of changed files with VC? Dmitry Gutov
2017-07-15 17:52 ` Eli Zaretskii
2017-07-16 17:12 ` Dmitry Gutov
2017-07-16 17:40 ` Eli Zaretskii
2017-07-16 17:45 ` Dmitry Gutov
2017-07-16 17:49 ` Eli Zaretskii
2017-07-16 17:59 ` Dmitry Gutov
2017-07-19 0:37 ` Michael Heerdegen
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=87lgntdt9f.fsf@drachen \
--to=michael_heerdegen@web.de \
--cc=emacs-devel@gnu.org \
/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.