我想使用Java JGit库来检索先前提交的文件修订。该文件每天都会更新,我需要从git存储库访问以前的版本。
我知道如何通过提供提交的修订我需要哈希,如所描述检出一个特定的修订版本在这里用这个命令:
git.checkout().setName( "<id-to-commit>" ).call();
当前,我克隆存储库,搜索该文件的最新提交,然后签出修订版。我现在的过程很麻烦,因为我每次都需要重新检出存储库。我宁愿只是从特定修订版(例如,master分支)中导出单个文件。
检索存储库的修订日志并获取我感兴趣的文件的提交。
private static HashMap getRevisionsByLog(Repository repository, String filePath) {
HashMap commitMap = new HashMap<String, DateTime >();
Git git = new Git(repository);
LogCommand logCommand = null;
try {
logCommand = git.log()
.add(git.getRepository().resolve(Constants.HEAD))
.addPath(filePath);
} catch (IOException e) {
e.printStackTrace();
}
try {
for (RevCommit revCommit : logCommand.call()) {
DateTime commitDate = new DateTime(1000L * revCommit.getCommitTime());
// Store commit hash and date
commitMap.put(revCommit.getName(),commitDate);
}
} catch (GitAPIException e) {
e.printStackTrace();
}
return commitMap;
}
此代码检索提交的最新修订版本,该修订版本早于我感兴趣的日期:
private static String getMostRecentCommit(HashMap<String, DateTime > commitMap, DateTime execDate){
Iterator it = commitMap.entrySet().iterator();
Map.Entry<String, DateTime> mostRecentCommit = null;
while (it.hasNext()) {
Map.Entry pair = (Map.Entry)it.next();
DateTime currentCommitDate = (DateTime) pair.getValue();
if(mostRecentCommit==null && ((DateTime) pair.getValue()).isBefore(execDate)){
mostRecentCommit = pair;
}else if (currentCommitDate.isBefore(execDate)){
System.out.println("Current date is before exec");
if(currentCommitDate.isAfter(mostRecentCommit.getValue())){
System.out.println("Current date is before exec and after the most recent one");
mostRecentCommit=pair;
}
}
}
System.out.println("Current most recent: " + mostRecentCommit.getKey() + " = " + mostRecentCommit.getValue());
return mostRecentCommit.getKey();
}
在此应用程序中,我想将文件的工作副本还原为2015-06-26T14:25:00之前的状态。
public static void main(String[] args) {
DateTime dt = new DateTime("2015-06-26T14:25:00");
Date execDate = dt.toDate();
String remotePath = "/media/Data/Gittest/repo/";
String localPath="/tmp/localgit";
// Clone repository
try {
Git.cloneRepository().setURI(remotePath)
.setDirectory(new File(localPath)).call();
} catch (GitAPIException e) {
e.printStackTrace();
}
Git git = null;
try {
git = Git.open(new File(localPath));
Repository repo = git.getRepository();
HashMap map = getRevisionsByLog(repo, "versuch.txt");
String commitID = getMostRecentCommit(map,dt);
System.out.println("Commit html" target="_blank">hash" +commitID);
git.checkout().setName(commitID).call();
} catch (IOException e) {
...
}
}
这是一个非常幼稚的实现,我相信JGit提供了一种更优雅的方法,但是我找不到任何提示。我想以编程方式导出单个文件的特定修订版。我需要参考一个特定的日期,我想获取在该日期内有效的修订。它自己的文件会经常更新,但是我需要一种机制来访问以前的版本并将它们用作另一个过程的输入。用Java和JGit实现此目标的最佳方法是什么?
您提出的解决方案仅适用于确切的日期/时间戳。因此,正如您在回答中所说,该解决方案仅在每天只有一次提交时才有效。由于不能保证,因此我使用了稍微不同的方法。
首先,我从文件中检索所有提交,并在树图中按日期对它们进行排序。提交按降序排列,因此最新提交是最后提交。
/*
* Get all commits of a file before a given date
* */
private TreeMap<DateTime,RevCommit> getAllCommitsBefore(Date execDate, String path){
RevWalk walk = new RevWalk( this.repo );
TreeMap<DateTime, RevCommit> commitsByDate = new TreeMap<DateTime, RevCommit>();
try {
walk.markStart( walk.parseCommit( this.repo.resolve( Constants.HEAD ) ) );
walk.sort( RevSort.COMMIT_TIME_DESC);
walk.setTreeFilter(PathFilter.create(path));
for( RevCommit commit : walk ) {
if ( commit.getCommitterIdent().getWhen().before(execDate) ) {
DateTime commitTime = new DateTime(commit.getCommitterIdent().getWhen());
commitsByDate.put(commitTime, commit);
}
}
walk.close();
System.out.println("Number of valid commits: " + commitsByDate.size());
} catch (IOException e) {
e.printStackTrace();
}
return commitsByDate;
}
然后,我可以通过检索TreeMap中的最后一个提交来检索最近的提交。
public RevCommit getMostRecentCommit(Date execDate, String path){
TreeMap<DateTime,RevCommit> allCommits = this.getAllCommitsBefore(execDate,path);
RevCommit lastCommit = allCommits.lastEntry().getValue();
System.out.println("Last entry: " + lastCommit.getName());
return lastCommit;
}
然后,我可以检索该修订版的文件并将其导出。
public void retrieveFileFromCommit(String path, RevCommit commit, String outputPath){
TreeWalk treeWalk = null;
try {
treeWalk = TreeWalk.forPath(this.repo, path, commit.getTree());
InputStream inputStream = this.repo.open( treeWalk.getObjectId( 0 ), Constants.OBJ_BLOB ).openStream();
this.writeFile(inputStream,outputPath);
treeWalk.close(); // use release() in JGit < 4.0
} catch (IOException e) {
e.printStackTrace();
}
}
/*
* Write the stream to the disk
* */
private void writeFile(InputStream inputStream, String outputPath){
OutputStream outputStream =
null;
try {
outputStream = new FileOutputStream(new File(outputPath));
int read = 0;
byte[] bytes = new byte[1024];
while ((read = inputStream.read(bytes)) != -1) {
outputStream.write(bytes, 0, read);
}
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
System.out.println("Done!");
}
如果我正确理解了您的问题,则希望在给定的日期范围内查找提交,然后阅读该提交的特定文件格式的内容。
假设每个日期只有一次提交,则可以使用RevWalk
来获取所需的提交:
try (RevWalk walk = new RevWalk(repo)) {
walk.markStart(walk.parseCommit(repo.resolve(Constants.HEAD)));
walk.sort(RevSort.COMMIT_TIME_DESC);
walk.setRevFilter(myFilter);
for (RevCommit commit : walk) {
if (commit.getCommitter().getWhen().equals(date)) {
// this is the commit you are looking for
revWalk.parseCommit(commit);
break;
}
}
}
我不确定是否revWalk.parseCommit(commit);
必须使用-
这取决于如何RevWalk
设置。尝试在不解析提交的情况下运行代码,如果找到了文件,则保留该文件。
现在您已经有了所需的提交,请使用TreeWalk
获取文件内容:
try (TreeWalk treeWalk = TreeWalk.forPath(repository, fileName, commit.getTree())) {
InputStream inputStream = repository.open(treeWalk.getObjectId(0), Constants.OBJ_BLOB).openStream();
// use the inputStream
}
fileName
保存到相关文件的存储库相对路径。
问题内容: 我正在尝试使用jGit克隆存储库并签出特定的提交。 假设提交哈希为:1e9ae842ca94f326215358917c620ac407323c81。 我的第一步是: 然后,我发现了另一个提出这种方法的问题: 但是我不确定如何将两者链接在一起? 有什么想法吗? 问题答案: 您将必须首先克隆存储库,因此第一步是正确的: 要仅通过ID检出提交,可以这样调用: 但是请注意,这将导致HEAD分
本文向大家介绍Git 在特定日期提交,包括了Git 在特定日期提交的使用技巧和注意事项,需要的朋友参考一下 示例 该--date参数设置作者日期。例如,此日期将出现在的标准输出中git log。 还要强制提交日期: date参数接受GNU date支持的灵活格式,例如: 当日期未指定时间时,将使用当前时间,仅日期将被覆盖。
我有一个新克隆的存储库的SHA-1。我要这个SHA-1的作者缩进。 所以我需要使用RevWalk并迭代整个存储库?或者是否有 方法或其他代码可用于获取 或其他具有 PersonIdent 的对象? 我尝试了什么:
我正在尝试使用jGit克隆存储库并签出特定的提交。 假设提交哈希为:1e9ae842ca94f326215358917c620ac407323c81。 我的第一步是: 然后我发现另一个问题建议这种方法: 但我不知道如何将两者联系起来? 有什么想法吗?
我想使用JGit获得存储库中两次修订(散列)之间的提交列表。 我不知道提交(开始提交哈希,结束提交哈希)是在一个分支中还是在不同的分支中。 我知道如何从JGit中的提交开始遍历树。 我的问题:我是必须在存储库的所有分支中查找提交散列,还是可以像这样只使用< code > Respository::resolve(): 并确保我将同时找到提交开始和结束?
问题内容: 在连接到仓库以及添加,提交甚至循环提交文件的消息方面,我已经设法掌握了jGit文件的基础知识。 我接下来要做的是能够获取单个文件的所有提交消息,然后能够将单个文件还原回特定的参考/时间点。 问题答案: 这是基于所有父提交查找提交更改的方法 (标量代码) 请注意,TreeFilter.ANY_DIFF适用于单个树遍历器,并将返回根提交中可用的所有元素。 然后,您将不得不遍历树以查看您的文