Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Emacs puts backup files named foo~ everywhere and I don't like having to remember to delete them. Also, if I edit a file that has a hard link somewhere else in the file system, the hard link points to the backup when I'm done editing, and that's confusing and awful. How can I either eliminate these backup files, or have them go somewhere other than the same directory?

share|improve this question

3 Answers

up vote 142 down vote accepted

If you've ever had your ass saved by an Emacs backup file, you probably want more of them, not less of them. It is annoying that they go in the same directory as the file you're editing, but that is easy to change. You can make all backup files go into a directory by putting something like the following in your .emacs.

(setq backup-directory-alist `(("." . "~/.saves")))

There are a number of arcane details associated with how Emacs might create your backup files. Should it rename the original and write out the edited buffer? What if the original is linked? In general, the safest but slowest bet is to always make backups by copying.

(setq backup-by-copying t)

If that's too slow for some reason you might also have a look at backup-by-copying-when-linked.

Since your backups are all in their own place now, you might want more of them, rather than less of them. Have a look at the Emacs documentation for these variables (with C-h v).

(setq delete-old-versions t
  kept-new-versions 6
  kept-old-versions 2
  version-control t)

Finally, if you absolutely must have no backup files:

(setq make-backup-files nil)

It makes me sick to think of it though.

share|improve this answer
4  
hey but it is creating backups with a name like this one !home!svradmin!foo~ and I cannot open the file – jaime Sep 28 '11 at 21:33
6  
why use backups? why not use git/mercurial? good version control systems and programming methodologies should trump individual file backup by the editor – vol7ron Jul 16 '12 at 23:55
7  
@vol7ron : The backups are for when you are editing something not under version control - like a config file or something quick and dirty that you haven't gotten around to putting into version control yet. Then, when you haven't been doing what you ought to, the editor saves your neck. – Eponymous Sep 5 '12 at 19:14
@jaime : have you tried cat /path/to/backupdir/\!home\!svradmin\!foo~ ? That is, have you tried escaping the ! (which is a special character in bash) with \ ? – Eponymous Sep 5 '12 at 19:18
1  
@vol7ron - That's just wrong. You shouldn't be putting crap into revision control that you don't want to keep. It just makes finding the important stuff way harder. Instead, use your editor backups for what they are good for (backing up changes in case of emergency) and revision control for what its good for (keeping important versions of your software and facilitating team development). Use the right tool for the job. – T.E.D. Feb 26 at 19:58
show 5 more comments

Another way of configuring backup options is via the Customize interface. Enter:

M-x customize-group

And then at the Customize group: prompt enter backup.

If you scroll to the bottom of the buffer you'll see Backup Directory Alist. Click Show Value and set the first entry of the list as follows:

Regexp matching filename: .*
Backup directory name: /path/to/your/backup/dir

Alternatively, you can turn backups off my setting Make Backup Files to off.

If you don't want Emacs to automatically edit your .emacs file you'll want to set up a customisations file.

share|improve this answer
1  
I wish I had known about customize-group 2 years ago. Thank you! – wprl Jul 3 '12 at 3:31

You can disable them altogether by

(setq make-backup-files nil)
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.