diff 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
line wrap: on
line diff
--- a/src/org/tmatesoft/hg/repo/HgRepositoryFiles.java	Tue May 14 17:31:35 2013 +0200
+++ b/src/org/tmatesoft/hg/repo/HgRepositoryFiles.java	Wed May 15 20:10:09 2013 +0200
@@ -30,7 +30,8 @@
 	HgSub(".hgsub"), HgSubstate(".hgsubstate"),
 	LastMessage(false, "last-message.txt"),
 	Bookmarks(false, "bookmarks"), BookmarksCurrent(false, "bookmarks.current"),
-	Branch(false, "branch");
+	Branch(false, "branch"), 
+	UndoBranch(false, "undo.branch"), UndoDirstate(false, "undo.dirstate");
 
 	private final String fname;
 	private final boolean livesInWC;