comparison src/com/tmate/hgkit/console/Log.java @ 8:a78c980749e3

Filename mangling according to requires options of the store (fncache incomplete for long names)
author Artem Tikhomirov <tikhomirov.artem@gmail.com>
date Thu, 23 Dec 2010 01:31:40 +0100
parents 5abe5af181bd
children b01500fe2604
comparison
equal deleted inserted replaced
7:286d221f6c28 8:a78c980749e3
33 System.out.println("Complete history of the repo:"); 33 System.out.println("Complete history of the repo:");
34 hgRepo.getChangelog().all(callback); 34 hgRepo.getChangelog().all(callback);
35 } else { 35 } else {
36 for (String fname : cmdLineOpts.files) { 36 for (String fname : cmdLineOpts.files) {
37 HgDataFile f1 = hgRepo.getFileNode(fname); 37 HgDataFile f1 = hgRepo.getFileNode(fname);
38 System.out.println("History of the file: " + fname); 38 System.out.println("History of the file: " + f1.getPath());
39 f1.history(callback); 39 f1.history(callback);
40 } 40 }
41 } 41 }
42 // 42 //
43 // System.out.println("\n\n========================="); 43 // System.out.println("\n\n=========================");