diff options
author | Jeff Schumacher <jeffschu@google.com> | 2010-07-01 15:30:46 -0700 |
---|---|---|
committer | Jeff Schumacher <jeffschu@google.com> | 2010-07-01 17:33:53 -0700 |
commit | cb8e1e6014c9cbac9c557df519ad7e22bdcf7d7d (patch) | |
tree | 2012f0a40fa74014ec79a354c9790d196b517905 /org.eclipse.jgit/resources | |
parent | 7b0b4110ed4f63efed25af2f03bf01d2715c5fbf (diff) | |
download | jgit-cb8e1e6014c9cbac9c557df519ad7e22bdcf7d7d.tar.gz jgit-cb8e1e6014c9cbac9c557df519ad7e22bdcf7d7d.zip |
Added a preliminary version of rename detection
JGit does not currently do rename detection during diffs. I added
a class that, given a TreeWalk to iterate over, can output a list
of DiffEntry's for that TreeWalk, taking into account renames. This
class only detects renames by SHA1's. More complex rename detection,
along the lines of what C Git does will be added later.
Change-Id: I93606ce15da70df6660651ec322ea50718dd7c04
Diffstat (limited to 'org.eclipse.jgit/resources')
-rw-r--r-- | org.eclipse.jgit/resources/org/eclipse/jgit/JGitText.properties | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/org.eclipse.jgit/resources/org/eclipse/jgit/JGitText.properties b/org.eclipse.jgit/resources/org/eclipse/jgit/JGitText.properties index 91b67daf83..76097cb5fd 100644 --- a/org.eclipse.jgit/resources/org/eclipse/jgit/JGitText.properties +++ b/org.eclipse.jgit/resources/org/eclipse/jgit/JGitText.properties @@ -297,6 +297,7 @@ remoteDoesNotHaveSpec=Remote does not have {0} available for fetch. remoteDoesNotSupportSmartHTTPPush=remote does not support smart HTTP push remoteHungUpUnexpectedly=remote hung up unexpectedly remoteNameCantBeNull=Remote name can't be null. +renamesAlreadyFound=Renames have already been found. repositoryAlreadyExists=Repository already exists: {0} repositoryNotFound=repository not found: {0} requiredHashFunctionNotAvailable=Required hash function {0} not available. |