Mercurial > jhg
comparison src/org/tmatesoft/hg/repo/HgRepositoryFiles.java @ 527:47b7bedf0569
Tests for present HgCheckoutCommand functionality. Update branch information on checkout. Use UTF8 encoding for the branch file
author | Artem Tikhomirov <tikhomirov.artem@gmail.com> |
---|---|
date | Tue, 15 Jan 2013 19:46:19 +0100 |
parents | ae4d6604debd |
children | 65c01508f002 |
comparison
equal
deleted
inserted
replaced
526:2f9ed6bcefa2 | 527:47b7bedf0569 |
---|---|
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 Bookmarks(false, "bookmarks"), BookmarksCurrent(false, "bookmarks.current"), |
33 Branch(false, "branch"); | |
33 | 34 |
34 private final String fname; | 35 private final String fname; |
35 private final boolean livesInWC; | 36 private final boolean livesInWC; |
36 | 37 |
37 private HgRepositoryFiles(String filename) { | 38 private HgRepositoryFiles(String filename) { |