package org.eclipse.jgit.pgm;
import java.io.ByteArrayOutputStream;
+import java.text.MessageFormat;
import java.util.ArrayList;
import java.util.List;
cmd.execute(bean.getArguments().toArray(
new String[bean.getArguments().size()]));
} catch (Die e) {
- return IO.readLines(e.getMessage());
+ return IO.readLines(MessageFormat.format(CLIText.get().fatalError,
+ e.getMessage()));
} finally {
if (cmd.outw != null)
cmd.outw.flush();
@Test
public void testExistingBranch() throws Exception {
- assertEquals("A branch named 'master' already exists.",
+ assertEquals("fatal: A branch named 'master' already exists.",
execute("git branch master")[0]);
}
}
public void testCheckoutNewBranchThatAlreadyExists() throws Exception {
new Git(db).commit().setMessage("initial commit").call();
- assertEquals("A branch named 'master' already exists.",
+ assertEquals("fatal: A branch named 'master' already exists.",
execute("git checkout -b master"));
}
@Test
public void testCheckoutNewBranchOnBranchToBeBorn() throws Exception {
- assertEquals("You are on a branch yet to be born",
+ assertEquals("fatal: You are on a branch yet to be born",
execute("git checkout -b side"));
}
failedToLockIndex=failed to lock index
failedToLockTag=Failed to lock tag {0}: {1}
fatalError=fatal: {0}
-fatalErrorTagExists=fatal: tag '{0}' exists
fatalThisProgramWillDestroyTheRepository=fatal: This program will destroy the repository\nfatal:\nfatal:\nfatal: {0}\nfatal:\nfatal: To continue, add {1} to the command line\nfatal:
fileIsRequired=argument file is required
forcedUpdate=forced update
/***/ public String failedToLockIndex;
/***/ public String failedToLockTag;
/***/ public String fatalError;
- /***/ public String fatalErrorTagExists;
/***/ public String fatalThisProgramWillDestroyTheRepository;
/***/ public String fileIsRequired;
/***/ public String forcedUpdate;