diff options
author | Matthias Sohn <matthias.sohn@sap.com> | 2012-01-27 09:30:43 +0100 |
---|---|---|
committer | Matthias Sohn <matthias.sohn@sap.com> | 2012-01-27 09:38:17 +0100 |
commit | f54e760232cd8a9552bb7723ed1f8fdc391b4cd2 (patch) | |
tree | d8b901fd79263e66ebfa5694234f57eba51a4f99 | |
parent | e4bfd61c9d2948169a98bbf5a8461c0f87d8759e (diff) | |
download | jgit-f54e760232cd8a9552bb7723ed1f8fdc391b4cd2.tar.gz jgit-f54e760232cd8a9552bb7723ed1f8fdc391b4cd2.zip |
Update iplog tool's README
Change-Id: I0a6d770b0c4deb11fea23b875ef5449c619c05a1
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
-rw-r--r-- | org.eclipse.jgit.iplog/README | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/org.eclipse.jgit.iplog/README b/org.eclipse.jgit.iplog/README index 4015c7da9a..6f945346ee 100644 --- a/org.eclipse.jgit.iplog/README +++ b/org.eclipse.jgit.iplog/README @@ -11,19 +11,19 @@ # $JGIT_BASE/.eclipse_iplog # ----------------------------------------------------------- # Prepare: -# jgit work tree base dir -export JGIT_BASE="c:/data/ide/helios/jgit" +# jgit executable (assuming jgit mvn build is up to date) +export jgit="~/src/git/jgit/org.eclipse.jgit.pgm/target/jgit" # repository work dir root path -export WORK_DIR="c:/data/ide/helios/jgit" +export WORK_DIR="~/src/git/jgit/" -# cd to repository work dir root path (for jgit this is identical to $JGIT_BASE) +# cd to repository work dir root path cd $WORK_DIR # ----------------------------------------------------------- # Update the CQ list: # - this command updates file .eclipse_iplog -java -jar $JGIT_BASE/org.eclipse.jgit.pgm/target/jgit-cli.jar eclipse-ipzilla +jgit eclipse-ipzilla # - if there are any updates 'git commit' them git add .eclipse_iplog @@ -49,6 +49,6 @@ ssh -p 29418 username@egit.eclipse.org gerrit gsql --format PRETTY # options: # -- version : the project version the iplog is to be generated for # - o : the output file -java -jar $JGIT_BASE/org.eclipse.jgit.pgm/target/jgit-cli.jar eclipse-iplog --version=0.8.0 -o jgit-0.8.0.xml +jgit eclipse-iplog --version=1.3.0 -o $WORK_DIR/jgit-1.3.0.xml |