Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 Java 来处理 Git 数据,我需要将每次提交的 Git 消息保存在 Java 变量中。
我怎样才能做到这一点?
在 Java 中启动一个进程。捕获 的输出git log。或者试试egit。
git log
使用 jgit,一个用 git 的纯 Java 实现编写的库。
迭代Git.open(...).log().call()
Git.open(...).log().call()