集成GIT仓库
jgit - java实现git操作
一个 Java 程序中使用 Git ,有一个功能齐全的 Git 库,那就是 JGit 。 JGit 是一个用 Java 写成的功能相对健全的 Git 的实现,它在 Java 社区中被广泛使用, JGit 项目由 Eclipse 维护。
官网地址
仓库地址
https://gitee.com/mirrors/jgit
例子
https://github.com/centic9/jgit-cookbook
实例代码
代码示例:https://wiki.eclipse.org/JGit/User_Guide#git-add
依赖:
<dependency>
<groupId>org.eclipse.jgit</groupId>
<artifactId>org.eclipse.jgit-parent</artifactId>
<version>6.1.0.202203080745-r</version>
<type>pom</type>
</dependency>
功能代码:
//官方代码
Repository repository = new FileRepositoryBuilder()
.setGitDir(new File("C:\\..\\.git"))
.readEnvironment()
.findGitDir() // scan up the file system tree
.build();
// 一般选择封装成方法
public static Repository getRepository(String dir) {
try {
Repository repository = new FileRepositoryBuilder()
.setGitDir(new File("C:\\..\\.git"))
.readEnvironment()
.findGitDir()
.build();
return repository;
} catch (IOException e) {
e.printStackTrace();
return null;
}
}
获取GIT对象
拿到git对象后就可以去执行git操作了
public static Git getGitObj(Repository repository) {
Git git = null;
git = new Git(repository);
return git;
}
这里面最常用的比如切换分支,新建分支,删除分支,revet,reset,commit,add。
官网操作代码:
Git git = new Git(db);
AddCommand add = git.add();
add.addFilepattern("需要add的文件名或者文件目录").call();
Git git = new Git(db);
CommitCommand commit = git.commit();
commit.setMessage("initial commit").call();
Git git = new Git(db);
RevCommit commit = git.commit().setMessage("initial commit").call();
RevTag tag = git.tag().setName("tag").call();
Git git = new Git(db);
Iterable<RevCommit> log = git.log().call();
1.new branch from …
需要先checkout base的分支然后create。
git.checkout().setName(baseBranch).call();
git.branchCreate().setName(新分支名).call();
//切换到新分支
git.checkout().setName(新分支名).call();
2.add&commit
git.add().addFilepattern(".").call();
git.rm().addFilepattern(".").call()
//setall()对应 -a 命令
git.commit().setMessage(commit msg).setAll(false).call();
// 一般的在add之前还会需要查看文件status,然后决定add哪些或者rm哪些
Status status = git.status().call();
Map<String,String> map = new HashMap<String,String>();
map.put("Added", status.getAdded().toString());
map.put("Changed", status.getChanged().toString());
map.put("Conflicting", status.getConflicting().toString());
map.put("ConflictingStageState", status.getConflictingStageState().toString());
map.put("IgnoredNotInIndex", status.getIgnoredNotInIndex().toString());
map.put("Missing", status.getMissing().toString());
map.put("Modified", status.getModified().toString());
map.put("Removed", status.getRemoved().toString());
map.put("UntrackedFiles", status.getUntracked().toString());
map.put("UntrackedFolders", status.getUntrackedFolders().toString());
System.out.println(map);
3.revert
使用git对象revert时需要拿到你当初commit的commitid或者其他操作的objectid。
git.revert().include(ObjectId.fromString(commitId)).setOurCommitName("OURS").call();
输入commitid然后操作。但是不可能谁能记住哪次commit的commitid,所以这里选择通过log去获取Revcommit对象。
List<String> commitIdList = new LinkedList<>();
gitObj.log().call().forEach(e -> finalPluginCommitLogList.add(e.getName()));
标签:集成,status,GIT,map,仓库,Git,call,commit,git
From: https://www.cnblogs.com/chase-h/p/16998821.html