java 操作git

​ 实现功能:借助jgit实现拉取文件,并返回文件路径清单

<!-- 依赖库 版本号有自行选择,只是需要注意支持的jdk版本即可,我使用的是jdk1.8-->
<dependency><groupId>org.eclipse.jgit</groupId><artifactId>org.eclipse.jgit</artifactId><version>5.13.2.202306221912-r</version>
</dependency>
// 还是用的 hutool和 lombok ,没有引入相关依赖的可以删除相关代码,使用类似代码替代。
import cn.hutool.core.util.StrUtil;
import lombok.extern.slf4j.Slf4j;
import org.eclipse.jgit.api.Git;
import org.eclipse.jgit.api.PullResult;
import org.eclipse.jgit.api.errors.GitAPIException;
import org.eclipse.jgit.diff.DiffEntry;
import org.eclipse.jgit.lib.ObjectId;
import org.eclipse.jgit.lib.ObjectReader;
import org.eclipse.jgit.lib.Repository;
import org.eclipse.jgit.revwalk.RevCommit;
import org.eclipse.jgit.storage.file.FileRepositoryBuilder;
import org.eclipse.jgit.transport.FetchResult;
import org.eclipse.jgit.treewalk.CanonicalTreeParser;import javax.validation.constraints.NotNull;
import java.io.File;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;@Slf4j
public class GitUtil {/*** 克隆git库.* @param url* @param localPath*/public static void cloneRepository(String url, String localPath) {try {Git git = Git.cloneRepository().setURI(url).setDirectory(new File(localPath)).call();Repository repository = git.getRepository();repository.close();log.info("Cloned repository successfully from {} to {}", url, localPath);} catch (GitAPIException e) {log.error("Failed to clone repository from {} to {}", url, localPath, e);} catch (Exception e) {log.error("Failed to clone repository from {} to {}", url, localPath, e);}}/*** 初始化本地git库.* @param localPath*/public static void initRepository(String localPath) {try {Git git = Git.init().setDirectory(new File(localPath)).call();Repository repository = git.getRepository();repository.close();log.info("Initialized repository successfully at {}", localPath);} catch (GitAPIException e) {log.error("Failed to initialize repository at {}", localPath, e);} catch (Exception e) {log.error("Failed to initialize repository at {}", localPath, e);}}/*** 添加* @param git*/public static void addAll(Git git) {try {git.add().addFilepattern(".").call();log.info("Added all files to staging area");} catch (GitAPIException e) {log.error("Failed to add all files to staging area", e);} catch (Exception e) {log.error("Failed to add all files to staging area", e);}}/*** 提交* @param git* @param message*/public static void commit(Git git, String message) {try {git.commit().setMessage(message).call();log.info("Committed changes with message: {}", message);} catch (GitAPIException e) {log.error("Failed to commit changes with message: {}", message, e);} catch (Exception e) {log.error("Failed to commit changes with message: {}", message, e);}}/*** 依据本地目录获取本地git库* @param localPath* @return*/public static Repository getRepository(String localPath) {FileRepositoryBuilder builder = new FileRepositoryBuilder();try {return builder.setGitDir(new File(localPath + "/.git")).readEnvironment().findGitDir().build();} catch (Exception e) {log.error("Failed to open repository at {}", localPath, e);return null;}}private static CanonicalTreeParser getTreeByObjectId(Git git, ObjectId objectId) throws Exception {try (ObjectReader reader = git.getRepository().newObjectReader();) {CanonicalTreeParser treeIter = new CanonicalTreeParser();treeIter.reset(reader, objectId);return treeIter;}}private static String getChangeType(DiffEntry diffEntry) {if (StrUtil.equals("/dev/null", diffEntry.getNewPath())) {return "del";}if (StrUtil.equals("/dev/null", diffEntry.getOldPath())) {return "add";}return "update";}private static void addDiifToMap(@NotNull Map<String, List<String>> changeInfoMap, @NotNull DiffEntry diffEntry) {String changeType = getChangeType(diffEntry);List<String> fileNameList = changeInfoMap.get(changeType);if (fileNameList == null) {changeInfoMap.put(changeType, new ArrayList<>());fileNameList = changeInfoMap.get(changeType);}fileNameList.add(StrUtil.equals("del", changeType) ? diffEntry.getOldPath() : diffEntry.getNewPath());}/*** 拉取文件并返回拉取的文件清单* @param repository* @return 返回 del(删除)、add(新增)、update(更新)的文件清单*/public static Map<String, List<String>> pull(Repository repository) {Map<String, List<String>> changeInfoMap = new HashMap<>();try (Git git = new Git(repository);) {// 1.拉取前记录当前的版本号.FetchResult fetchResult = git.fetch().call();ObjectId oldHead = git.getRepository().resolve("HEAD^{tree}");// 2.拉取并记录拉取后的版本号PullResult result = git.pull().call();ObjectId newHead = git.getRepository().resolve("HEAD^{tree}");// 3.计算差异清单。List<DiffEntry> diffs = git.diff().setNewTree(getTreeByObjectId(git, newHead)).setOldTree(getTreeByObjectId(git, oldHead)).call();for (DiffEntry entry : diffs) {addDiifToMap(changeInfoMap,entry);}} catch (GitAPIException e) {log.error("Failed to pull changes from remote repository", e);} catch (Exception e) {log.error("Failed to pull changes from remote repository", e);}return changeInfoMap;}
}

使用方式:

1.	在将代码库拉取到本地的目录中(也可以通过上面的代码,直接从远程仓库克隆到本地目录中)
2.	使用pull方法即可针对指定目录的git库进行拉取并返回拉取的文件清单,以做其他用处。

以上仅为案例,实际功能还需要配合其他逻辑实现。

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/203625.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

AI必然成为未来的OS

我的新书《Android App开发入门与实战》已于2020年8月由人民邮电出版社出版&#xff0c;欢迎购买。点击进入详情 ChatGPT引入插件&#xff0c;AI必然成为未来OS&#xff0c;或至少成为绝大多数APP首选入口。未来软件开发根据任务不同&#xff0c;有两种不同范式&#xff1a; &a…

unity 2d 入门 飞翔小鸟 场景淡入淡出功能(三)

1、在图层新建个空的图层 场景2 2创建c#脚本 脚本创建好后&#xff0c;将脚本推拽进空白图层里面&#xff0c;将黑色图片拉进去脚本的参数里面&#xff0c;如上面最后一张图&#xff0c;两个切换的场景都要进行上述操作 using System.Collections; using System.Collection…

多个项目复用node_modules

多个项目使用的node_modules基本一致&#xff0c;每个项目都安装一遍依赖&#xff0c;对空间造成资源浪费。 通过创建软链接的方式&#xff0c;共用一套node_modules。 Win解决方案 mklink /d [链接文件或目录] [原始文件或目录] // 举例 mklink /d D:\work\project-1\node_m…

识别低效io引起的free buffer waits

产生事发时间段的awr报告 Top 5 wait events 这里重点关注&#xff1a; 1.free buffer waits 2.enq_HW-contention 3.enq:tx-row lock contention enq:HW-contention属于水位线的争用&#xff0c;已经透过alter table allocate extent&#xff0c;提前分配空间,这里不做讨论 …

软件工程之需求分析

一、对需求的基本认识 1.需求分析简介 (1)什么是需求 用户需求&#xff1a;由用户提出。原始的用户需求通常是不能直接做成产品的&#xff0c;需要对其进行分析提炼&#xff0c;最终形成产品需求。 产品需求&#xff1a;产品经理针对用户需求提出的解决方案。 (2)为什么要…

【Python】Flask + MQTT 实现消息订阅发布

目录 Flask MQTT 实现消息订阅发布准备开始1.创建Flask项目2创建py文件&#xff1a;mqtt_demo.py3.代码实现4.项目运行5.测试5.1 测试消息接收5.2 测试消息发布6、扩展 Flask MQTT 实现消息订阅发布 准备 本次项目主要使用到的库&#xff1a;flask_mqtt pip install flask…

Mysql支持ssl

Mysql支持ssl 查看数据库是否支持ssl配置 mysql> show variables like ‘have%ssl%’; 查看数据库端口号 mysql> show variables like ‘port’; 查看数据库数据存放路径 mysql> show variables like ‘datadir’; 通过openssl 制作生成 SSL 证书&#xff08;有…

Leetcode刷题详解——最长湍流子数组

1. 题目链接&#xff1a;978. 最长湍流子数组 2. 题目描述&#xff1a; 给定一个整数数组 arr &#xff0c;返回 arr 的 最大湍流子数组的长度 。 如果比较符号在子数组中的每个相邻元素对之间翻转&#xff0c;则该子数组是 湍流子数组 。 更正式地来说&#xff0c;当 arr 的子…

【前端设计模式】之策略模式

概述 在前端开发中&#xff0c;我们经常会遇到需要根据不同的条件或情况来执行不同的算法或行为的情况。这时&#xff0c;策略模式就能派上用场。策略模式是一种行为型设计模式&#xff0c;它将不同的算法封装成独立的策略对象&#xff0c;使得这些算法可以互相替换&#xff0…

ALPHA开发板烧录工具MfgTool简介

一. 简介 前面我们已经移植好了 uboot 和 linux kernle &#xff0c;制作好了根文件系统。但是我们移植都是通 过网络来测试的&#xff0c;在实际的产品开发中肯定不可能通过网络来运行。 因此&#xff0c;我们需要将 uboot 、 linux kernel 、 .dtb( 设备树 ) 和 rootf…

串口环形收发原理及实现

一、环形收发队列构建 1、构造环形收发数组及其长度 #define buff_size 10 Unsigned char buff[buff_size]; 2、定义环形收发读/写位置 u16 R_Buff; u16 W_Buff; 3、结构体封装 typedef struct Qbuff {u16 write; //写位置u16 read; //读位置u8 buf…

Zabbix自定义飞书webhook告警媒介1

说明&#xff1a;此配置仅适用于7版本及以上&#xff0c;低版本可能有问题 JavaScript 内容如下&#xff1a; try {var sourceData JSON.parse(value),req new HttpRequest(),response;if (sourceData.HTTPProxy) {req.setProxy(sourceData.HTTPProxy);}req.addHeader(Conte…

手机拍摄的照片复制到CSDN博客中自动旋转的问题的解决

概要&#xff1a;写CSDN博客的时候&#xff0c;复制手机拍摄的照片到博客中&#xff0c;照片会自动发生90度旋转。目前找到了两个解决方法。问题出现的环境是Ubuntu22.04Firefox120.0.1 方法一&#xff1a;用shutter打开重新保存 选中图片——>鼠标右键——>选择用其他软…

pytorch中的transpose用法

注意&#xff1a;维数从0开始&#xff0c;0维 1维2维…,负数代表从右往左数&#xff0c;-1代表第一维&#xff0c;以此类推 import torch import numpy as np# 创建一个二维数组 arr torch.tensor([[[1, 2],[3, 4]],[[5, 6],[7, 8]]]) print("原始数组&#xff1a;"…

python操作MySQL——封装增删改查

上一篇&#xff1a;python操作MySQL数据——连接与插入数据-CSDN博客 下一篇&#xff1a;python操作mysql——批量添加csv数据-CSDN博客 import pymysql.cursors from pymysql.err import OperationalError from data.readCsv import Csv_to_lst import os import configpar…

Docker部署.NET6项目

Docker的三大核心概念 1、docker仓库&#xff08;repository&#xff09; docker仓库&#xff08;repository&#xff09;类似于代码库&#xff0c;是docker集中存放镜像的场所。实际上&#xff0c;注册服务器是存放仓库的地方&#xff0c;其上往往存放着很多仓库。每个仓库集…

案例058:基于微信小程序的智能社区服务系统

文末获取源码 开发语言&#xff1a;Java 框架&#xff1a;SSM JDK版本&#xff1a;JDK1.8 数据库&#xff1a;mysql 5.7 开发软件&#xff1a;eclipse/myeclipse/idea Maven包&#xff1a;Maven3.5.4 小程序框架&#xff1a;uniapp 小程序开发软件&#xff1a;HBuilder X 小程序…

操作符(原码反码补码)

目录 前言&#xff1a; 原反补码&#xff1a; 位操作符&#xff1a; &#xff06; &#xff5c; &#xff3e; &#xff5e; >> << 总结&#xff1a; 逻辑操作符 && || 其他操作符&#xff1a; sizeof -- () &#xff1f;&#xf…

AMEYA360--罗姆与Quanmatic公司利用量子技术优化制造工序并完成验证

全球知名半导体制造商罗姆(总部位于日本京都市)于2023年1月起与 Quanmatic Inc.(总部位于日本东京都新宿区&#xff0c;以下简称“Quanmatic”)展开合作&#xff0c;在半导体制造工序之一的EDS工序中测试并引入量子技术&#xff0c;以优化制造工序中的组合。目前&#xff0c;双…

C#excel导入dategridview并保存到数据库/dategridview增加一行或几行一键保存数据库

excel导入到dategridview显示并保存到数据库 dategridview增加一行或几行一键保存数据库 ExcelHelper类(这个要导入NPOI包) using NPOI.HSSF.UserModel; using NPOI.SS.UserModel; using NPOI.XSSF.UserModel; using System; using System.Collections.Generic; using Syste…