本文整理汇总了Java中org.eclipse.jgit.api.errors.InvalidRefNameException类的典型用法代码示例。如果您正苦于以下问题:Java InvalidRefNameException类的具体用法?Java InvalidRefNameException怎么用?Java InvalidRefNameException使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
InvalidRefNameException类属于org.eclipse.jgit.api.errors包,在下文中一共展示了InvalidRefNameException类的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: switchToMainAndDeleteFrom
import org.eclipse.jgit.api.errors.InvalidRefNameException; //导入依赖的package包/类
/**
* Switch to the main branch and delete the temporary branch.
*
* @throws GitAPIException
* @throws RefAlreadyExistsException
* @throws RefNotFoundException
* @throws InvalidRefNameException
* @throws CheckoutConflictException
* @throws NotMergedException
* @throws CannotDeleteCurrentBranchException
*/
private void switchToMainAndDeleteFrom(final String tempBranch)
throws GitAPIException, RefAlreadyExistsException,
RefNotFoundException, InvalidRefNameException,
CheckoutConflictException, NotMergedException,
CannotDeleteCurrentBranchException {
try {
repository.reset().setMode(ResetType.HARD).call();
} finally {
try {
repository.checkout().setCreateBranch(false)
.setName(mainBranchName).setForce(true).call();
} finally {
try {
repository.reset().setMode(ResetType.HARD).call();
} finally {
repository.branchDelete().setForce(true)
.setBranchNames(tempBranch).call();
}
}
}
}
示例2: call
import org.eclipse.jgit.api.errors.InvalidRefNameException; //导入依赖的package包/类
@Override
public Ref call() throws GitAPIException, RefNotFoundException,
CheckoutConflictException, InvalidRefNameException,
RefAlreadyExistsException
{
this.checkCallable();
try {
this.processOptions();
this.checkoutStartPoint();
RefUpdate update = this.getRepository().updateRef(Constants.HEAD);
Result r = update.link(this.getBranchName());
if (EnumSet.of(Result.NEW, Result.FORCED).contains(r) == false) {
throw new JGitInternalException(MessageFormat.format(
JGitText.get().checkoutUnexpectedResult, r.name()));
}
this.setCallable(false);
return this.getRepository().getRef(Constants.HEAD);
}
catch (IOException e) {
throw new JGitInternalException(e.getMessage(), e);
}
}
示例3: initializeGitFlow
import org.eclipse.jgit.api.errors.InvalidRefNameException; //导入依赖的package包/类
private static Git initializeGitFlow(Repository repo)
throws RefAlreadyExistsException, RefNotFoundException,
InvalidRefNameException, GitAPIException {
Git git = new Git(repo);
git.commit().setCommitter(COMMITTER).setMessage("initial commit").call();
return git;
}
示例4: processOptions
import org.eclipse.jgit.api.errors.InvalidRefNameException; //导入依赖的package包/类
protected void processOptions() throws InvalidRefNameException,
RefAlreadyExistsException, IOException
{
String branchName = this.getBranchName();
if (this.name == null || Repository.isValidRefName(branchName) == false) {
throw new InvalidRefNameException(MessageFormat.format(
JGitText.get().branchNameInvalid, this.name == null ? "<null>"
: this.name));
}
Ref refToCheck = this.getRepository().getRef(branchName);
if (refToCheck != null) {
throw new RefAlreadyExistsException(MessageFormat.format(
JGitText.get().refAlreadyExists, this.name));
}
}