From: Heiko Gerdau <hg@technosis.de>
Subject: backup files and version control
Date: Thu, 17 Feb 2005 11:14:24 +0100 [thread overview]
Message-ID: <200502171114.25241.hg@technosis.de> (raw)
Hi,
I need some advice concerning backup files and version control.
I have written my own elisp function "make-backup-file-name" to collect backup
files in subdirectories named ".backup~". (function is attached at the end of
this mail)
It works fine for all regular files except if they are under version control.
Than the backup files are scattering with the version numbers attached in
the same directory as the original file which is realy unconfortable if I
want to use tools like grep etc.
I also tried (setq version-control (quote never)) with no effect.
So my question:
What can I do to put also those files into my backup subdirectory that are
under version control?
Any help is appriciated
Thanks
Heiko
Here is my version of "make-backup-file-name"
;; Create backup files in a separate subdirectory
(defun make-backup-file-name (file)
(let ((dir (concat (file-name-directory file) ".backup~")))
(if (not (file-exists-p dir))
(make-directory dir))
(concat dir "/" (file-name-nondirectory file) "~")))
next reply other threads:[~2005-02-17 10:14 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2005-02-17 10:14 Heiko Gerdau [this message]
[not found] <mailman.286.1108636126.32256.help-gnu-emacs@gnu.org>
2005-02-17 15:27 ` backup files and version control timseal
2005-02-17 19:44 ` Kevin Rodgers
2005-02-18 10:39 ` Heiko Gerdau
[not found] ` <mailman.452.1108724397.32256.help-gnu-emacs@gnu.org>
2005-02-18 12:44 ` Thien-Thi Nguyen
2005-02-18 14:23 ` Heiko Gerdau
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
List information: https://www.gnu.org/software/emacs/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=200502171114.25241.hg@technosis.de \
--to=hg@technosis.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.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).