This avoids sorting symrefs by their target; instead we sort the symref by the symref's own name, thus placing "HEAD" before the standard "refs/heads/..." namespace. Signed-off-by: Shawn O. Pearce <spearce@xxxxxxxxxxx> --- .../src/org/spearce/jgit/lib/RefComparator.java | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/org.spearce.jgit/src/org/spearce/jgit/lib/RefComparator.java b/org.spearce.jgit/src/org/spearce/jgit/lib/RefComparator.java index 95e3e0f..940a7ec 100644 --- a/org.spearce.jgit/src/org/spearce/jgit/lib/RefComparator.java +++ b/org.spearce.jgit/src/org/spearce/jgit/lib/RefComparator.java @@ -54,7 +54,7 @@ public static final RefComparator INSTANCE = new RefComparator(); public int compare(final Ref o1, final Ref o2) { - return o1.getName().compareTo(o2.getName()); + return o1.getOrigName().compareTo(o2.getOrigName()); } /** -- 1.6.1.rc4.301.g5497a -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html