博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[Java]JGit用法总结
阅读量:5908 次
发布时间:2019-06-19

本文共 3188 字,大约阅读时间需要 10 分钟。

clone

public static void gitClone(String remoteUrl, File repoDir) {    try {        Git git = Git.cloneRepository()                .setURI(remoteUrl)                .setDirectory(repoDir)                .call();        logger.info("Cloning from " + remoteUrl + " to " + git.getRepository());    } catch (Exception e) {        logger.info(e.getMessage());    }}

checkout

checkout要在/.git目录中进行

public static void gitCheckout(File repoDir, String version) {    File RepoGitDir = new File(repoDir.getAbsolutePath() + "/.git");    if (!RepoGitDir.exists()) {        logger.info("Error! Not Exists : " + RepoGitDir.getAbsolutePath());    } else {        Repository repo = null;        try {            repo = new FileRepository(RepoGitDir.getAbsolutePath());            Git git = new Git(repo);            CheckoutCommand checkout = git.checkout();            checkout.setName(version);            checkout.call();            logger.info("Checkout to " + version);            PullCommand pullCmd = git.pull();            pullCmd.call();            logger.info("Pulled from remote repository to local repository at " + repo.getDirectory());        } catch (Exception e) {            logger.info(e.getMessage() + " : " + RepoGitDir.getAbsolutePath());        } finally {            if (repo != null) {                repo.close();            }        }    }}

pull

pull要在/.git目录中进行

public static void gitPull(File repoDir) {    File RepoGitDir = new File(repoDir.getAbsolutePath() + "/.git");    if (!RepoGitDir.exists()) {        logger.info("Error! Not Exists : " + RepoGitDir.getAbsolutePath());    } else {        Repository repo = null;        try {            repo = new FileRepository(RepoGitDir.getAbsolutePath());            Git git = new Git(repo);            PullCommand pullCmd = git.pull();            pullCmd.call();            logger.info("Pulled from remote repository to local repository at " + repo.getDirectory());        } catch (Exception e) {            logger.info(e.getMessage() + " : " + RepoGitDir.getAbsolutePath());        } finally {            if (repo != null) {                repo.close();            }        }    }}

show status

show status要在/.git目录中进行

public static void gitShowStatus(File repoDir) {    File RepoGitDir = new File(repoDir.getAbsolutePath() + "/.git");    if (!RepoGitDir.exists()) {        logger.info("Error! Not Exists : " + RepoGitDir.getAbsolutePath());    } else {        Repository repo = null;        try {            repo = new FileRepository(RepoGitDir.getAbsolutePath());            Git    git    = new Git(repo);            Status status = git.status().call();            logger.info("Git Change: " + status.getChanged());            logger.info("Git Modified: " + status.getModified());            logger.info("Git UncommittedChanges: " + status.getUncommittedChanges());            logger.info("Git Untracked: " + status.getUntracked());        } catch (Exception e) {            logger.info(e.getMessage() + " : " + repoDir.getAbsolutePath());        } finally {            if (repo != null) {                repo.close();            }        }    }}

参考资料

JGit API:

JGit Cookbook:

转载于:https://www.cnblogs.com/wpcnblog/p/9242728.html

你可能感兴趣的文章
Android AlertDialog去除黑边白边自定义布局(转)
查看>>
iOS: 如何获取ios设备的当前IP地址
查看>>
eclipse indigo版本连接oracle XE(图解)
查看>>
和菜鸟一起学c之gcc编译过程及其常用编译选项【转】
查看>>
macOS Ruby版本需要升级到2.2.2以上
查看>>
.net 面试题系列文章五(附答案)
查看>>
接口规范,js处理json,php返回给ajax的数据格式
查看>>
无法访问 MemoryStream 的内部缓冲区
查看>>
TextMesh Pro Emoji Align With Text(表情和文字对齐)
查看>>
ICE专题:反叛之冰 Internet Communications Engine
查看>>
c++ 观察者模式
查看>>
[每日电路图] 7、设计一个PCB的流程及细节·总结——给外行的同学或刚入行的同学一个宏观鸟瞰电路板设计的大致流程的文章...
查看>>
Cocos2d-x移植android增加震动效果
查看>>
基于Unity的AOP的符合基于角色的访问控制(RBAC)模型的通用权限设计
查看>>
栈及其在.NET FrameWork中的源码分析
查看>>
2^n的第一位数字 soj 3848 mathprac
查看>>
[Oracle][Metadata]如何查找与某一个功能相关的数据字典名
查看>>
调度模式·Worker-Channel-Request
查看>>
[ACM_暴力] ZOJ 3710 [Friends 共同认识 最终认识 暴力]
查看>>
[ACM_模拟] ZOJ 3713 [In 7-bit 特殊输制]出规则 7bits 16进
查看>>