diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/api/CheckoutCommand.java b/org.eclipse.jgit/src/org/eclipse/jgit/api/CheckoutCommand.java index 8caff0629..dd9f0c456 100644 --- a/org.eclipse.jgit/src/org/eclipse/jgit/api/CheckoutCommand.java +++ b/org.eclipse.jgit/src/org/eclipse/jgit/api/CheckoutCommand.java @@ -143,8 +143,8 @@ public class CheckoutCommand extends GitCommand { } Ref headRef = repo.getRef(Constants.HEAD); - String refLogMessage = "checkout: moving from " - + headRef.getTarget().getName(); + String shortHeadRef = getShortBranchName(headRef); + String refLogMessage = "checkout: moving from " + shortHeadRef; ObjectId branch = repo.resolve(name); if (branch == null) throw new RefNotFoundException(MessageFormat.format(JGitText @@ -169,10 +169,10 @@ public class CheckoutCommand extends GitCommand { Ref ref = repo.getRef(name); if (ref != null && !ref.getName().startsWith(Constants.R_HEADS)) ref = null; + String toName = Repository.shortenRefName(name); RefUpdate refUpdate = repo.updateRef(Constants.HEAD, ref == null); refUpdate.setForceUpdate(force); - refUpdate.setRefLogMessage(refLogMessage + " to " - + newCommit.getName(), false); + refUpdate.setRefLogMessage(refLogMessage + " to " + toName, false); Result updateResult; if (ref != null) updateResult = refUpdate.link(ref.getName()); @@ -216,6 +216,12 @@ public class CheckoutCommand extends GitCommand { } } + private String getShortBranchName(Ref headRef) { + if (headRef.getTarget().getName().equals(headRef.getName())) + return headRef.getTarget().getObjectId().getName(); + return Repository.shortenRefName(headRef.getTarget().getName()); + } + /** * @param path * Path to update in the working tree and index.