Mercurial > hg4j
comparison 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 |
comparison
equal
deleted
inserted
replaced
483:e31e85cf4d4c | 484:ae4d6604debd |
---|---|
26 public enum HgRepositoryFiles { | 26 public enum HgRepositoryFiles { |
27 | 27 |
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 | 33 |
33 private final String fname; | 34 private final String fname; |
34 private final boolean livesInWC; | 35 private final boolean livesInWC; |
35 | 36 |
36 private HgRepositoryFiles(String filename) { | 37 private HgRepositoryFiles(String filename) { |