comparison src/org/tmatesoft/hg/repo/HgRepositoryFiles.java @ 617:65c01508f002

Rollback support for commands that modify repository. Strategy to keep complete copy of a file being changed
author Artem Tikhomirov <tikhomirov.artem@gmail.com>
date Wed, 15 May 2013 20:10:09 +0200
parents 47b7bedf0569
children 5afc7eedb3dd
comparison
equal deleted inserted replaced
616:5e0313485eef 617:65c01508f002
28 HgIgnore(".hgignore"), HgTags(".hgtags"), HgEol(".hgeol"), 28 HgIgnore(".hgignore"), HgTags(".hgtags"), HgEol(".hgeol"),
29 Dirstate(false, "dirstate"), HgLocalTags(false, "localtags"), 29 Dirstate(false, "dirstate"), HgLocalTags(false, "localtags"),
30 HgSub(".hgsub"), HgSubstate(".hgsubstate"), 30 HgSub(".hgsub"), HgSubstate(".hgsubstate"),
31 LastMessage(false, "last-message.txt"), 31 LastMessage(false, "last-message.txt"),
32 Bookmarks(false, "bookmarks"), BookmarksCurrent(false, "bookmarks.current"), 32 Bookmarks(false, "bookmarks"), BookmarksCurrent(false, "bookmarks.current"),
33 Branch(false, "branch"); 33 Branch(false, "branch"),
34 UndoBranch(false, "undo.branch"), UndoDirstate(false, "undo.dirstate");
34 35
35 private final String fname; 36 private final String fname;
36 private final boolean livesInWC; 37 private final boolean livesInWC;
37 38
38 private HgRepositoryFiles(String filename) { 39 private HgRepositoryFiles(String filename) {