Mercurial > hg4j
diff src/org/tmatesoft/hg/repo/HgRepositoryFiles.java @ 484:ae4d6604debd
Bookmarks support added
author | Artem Tikhomirov <tikhomirov.artem@gmail.com> |
---|---|
date | Wed, 08 Aug 2012 14:41:44 +0200 |
parents | 6c67debed07e |
children | 47b7bedf0569 |
line wrap: on
line diff
--- a/src/org/tmatesoft/hg/repo/HgRepositoryFiles.java Tue Aug 07 19:14:53 2012 +0200 +++ b/src/org/tmatesoft/hg/repo/HgRepositoryFiles.java Wed Aug 08 14:41:44 2012 +0200 @@ -28,7 +28,8 @@ HgIgnore(".hgignore"), HgTags(".hgtags"), HgEol(".hgeol"), Dirstate(false, "dirstate"), HgLocalTags(false, "localtags"), HgSub(".hgsub"), HgSubstate(".hgsubstate"), - LastMessage(false, "last-message.txt"); + LastMessage(false, "last-message.txt"), + Bookmarks(false, "bookmarks"), BookmarksCurrent(false, "bookmarks.current"); private final String fname; private final boolean livesInWC;