aboutsummaryrefslogtreecommitdiffstats
path: root/org.eclipse.jgit.pgm
diff options
context:
space:
mode:
authorShawn O. Pearce <spearce@spearce.org>2010-09-01 09:34:43 -0700
committerShawn O. Pearce <spearce@spearce.org>2010-09-02 11:38:39 -0700
commit244b1580b5155099bfdf98692d76c1b2a6183126 (patch)
tree88525a6a9ef57e6110f9f6c83b45cd5ff85b328d /org.eclipse.jgit.pgm
parentec2fdbf2bad632bf303ef3d394c957db7588d205 (diff)
downloadjgit-244b1580b5155099bfdf98692d76c1b2a6183126.tar.gz
jgit-244b1580b5155099bfdf98692d76c1b2a6183126.zip
log, diff: Add --src-prefix, --dst-prefix, --no-prefix
Change-Id: I0c7154a51143d56362f12ee4fa93133778d3a9eb Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
Diffstat (limited to 'org.eclipse.jgit.pgm')
-rw-r--r--org.eclipse.jgit.pgm/resources/org/eclipse/jgit/pgm/CLIText.properties3
-rw-r--r--org.eclipse.jgit.pgm/src/org/eclipse/jgit/pgm/Diff.java16
-rw-r--r--org.eclipse.jgit.pgm/src/org/eclipse/jgit/pgm/Log.java16
3 files changed, 35 insertions, 0 deletions
diff --git a/org.eclipse.jgit.pgm/resources/org/eclipse/jgit/pgm/CLIText.properties b/org.eclipse.jgit.pgm/resources/org/eclipse/jgit/pgm/CLIText.properties
index e7dce1bf55..99878f14c8 100644
--- a/org.eclipse.jgit.pgm/resources/org/eclipse/jgit/pgm/CLIText.properties
+++ b/org.eclipse.jgit.pgm/resources/org/eclipse/jgit/pgm/CLIText.properties
@@ -152,6 +152,7 @@ usage_displayAListOfAllRegisteredJgitCommands=Display a list of all registered j
usage_displayAllPossibleMergeBases=display all possible merge bases
usage_displayThejavaStackTraceOnExceptions=display the Java stack trace on exceptions
usage_displayThisHelpText=display this help text
+usage_dstPrefix=show the destination prefix instead of "b/"
usage_enableTheServiceInAllRepositories=enable the service in all repositories
usage_exportRepositoriesOverGit=Export repositories over git://
usage_exportWithoutGitDaemonExportOk=export without git-daemon-export-ok
@@ -168,6 +169,7 @@ usage_listCreateOrDeleteBranches=List, create, or delete branches
usage_logAllPretty=format:%H %ct %P' output=log --all '--pretty=format:%H %ct %P' output
usage_moveRenameABranch=move/rename a branch
usage_nameStatus=show only name and status of files
+usage_noPrefix=do not show any source or destination prefix
usage_noRenames=disable rename detection
usage_outputFile=Output file
usage_path=path
@@ -181,6 +183,7 @@ usage_renameLimit=limit size of rename matrix
usage_setTheGitRepositoryToOperateOn=set the git repository to operate on
usage_showRefNamesMatchingCommits=Show ref names matching commits
usage_showPatch=display patch
+usage_srcPrefix=show the source prefix instead of "a/"
usage_symbolicVersionForTheProject=Symbolic version for the project
usage_synchronizeIPZillaData=Synchronize IPZilla data
usage_tagMessage=tag message
diff --git a/org.eclipse.jgit.pgm/src/org/eclipse/jgit/pgm/Diff.java b/org.eclipse.jgit.pgm/src/org/eclipse/jgit/pgm/Diff.java
index b6650a4ea1..ec939b37e4 100644
--- a/org.eclipse.jgit.pgm/src/org/eclipse/jgit/pgm/Diff.java
+++ b/org.eclipse.jgit.pgm/src/org/eclipse/jgit/pgm/Diff.java
@@ -131,6 +131,22 @@ class Diff extends TextBuiltin {
diffFmt.setAbbreviationLength(Constants.OBJECT_ID_STRING_LENGTH);
}
+ @Option(name = "--src-prefix", usage = "usage_srcPrefix")
+ void sourcePrefix(String path) {
+ diffFmt.setOldPrefix(path);
+ }
+
+ @Option(name = "--dst-prefix", usage = "usage_dstPrefix")
+ void dstPrefix(String path) {
+ diffFmt.setNewPrefix(path);
+ }
+
+ @Option(name = "--no-prefix", usage = "usage_noPrefix")
+ void noPrefix(@SuppressWarnings("unused") boolean on) {
+ diffFmt.setOldPrefix("");
+ diffFmt.setNewPrefix("");
+ }
+
// END -- Options shared with Log
@Override
diff --git a/org.eclipse.jgit.pgm/src/org/eclipse/jgit/pgm/Log.java b/org.eclipse.jgit.pgm/src/org/eclipse/jgit/pgm/Log.java
index 2b29f73385..8eb2e54dc5 100644
--- a/org.eclipse.jgit.pgm/src/org/eclipse/jgit/pgm/Log.java
+++ b/org.eclipse.jgit.pgm/src/org/eclipse/jgit/pgm/Log.java
@@ -139,6 +139,22 @@ class Log extends RevWalkTextBuiltin {
diffFmt.setAbbreviationLength(Constants.OBJECT_ID_STRING_LENGTH);
}
+ @Option(name = "--src-prefix", usage = "usage_srcPrefix")
+ void sourcePrefix(String path) {
+ diffFmt.setOldPrefix(path);
+ }
+
+ @Option(name = "--dst-prefix", usage = "usage_dstPrefix")
+ void dstPrefix(String path) {
+ diffFmt.setNewPrefix(path);
+ }
+
+ @Option(name = "--no-prefix", usage = "usage_noPrefix")
+ void noPrefix(@SuppressWarnings("unused") boolean on) {
+ diffFmt.setOldPrefix("");
+ diffFmt.setNewPrefix("");
+ }
+
// END -- Options shared with Diff
Log() {