Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
Matthias Sohn 57d6585522 Prepare post v1.1.0.201109151100-r build il y a 12 ans
..
.settings Use commit message best practices for Mylyn Commit template il y a 12 ans
META-INF Prepare post v1.1.0.201109151100-r build il y a 12 ans
resources/org/eclipse/jgit/iplog Externalize strings from JGit il y a 14 ans
src/org/eclipse/jgit/iplog In iplog list approved CQs as "active" il y a 13 ans
.classpath Externalize strings from JGit il y a 14 ans
.gitignore Generate an Eclipse IP log with jgit eclipse-iplog il y a 14 ans
.project Revert "Hide Maven target directories from Eclipse" il y a 13 ans
README Fix line endings il y a 14 ans
about.html Add missing about.html files to all shipped bundles il y a 13 ans
build.properties Add missing about.html files to all shipped bundles il y a 13 ans
plugin.properties Remove incubation marker il y a 13 ans
pom.xml Prepare post v1.1.0.201109151100-r build il y a 12 ans

README

# -----------------------------------------------------------
# This document describes how to generate the Eclipse ip log
# for the eclipse project technology.jgit using a local clone
# of the git repository
# git://egit.eclipse.org/jgit.git
# starting point is a manually written file
# .eclipse_iplog
# located in the repository's work dir root path
# which is describing the project, see first section of this
# file in the jgit root directory:
# $JGIT_BASE/.eclipse_iplog
# -----------------------------------------------------------
# Prepare:
# jgit work tree base dir
export JGIT_BASE="c:/data/ide/helios/jgit"

# repository work dir root path
export WORK_DIR="c:/data/ide/helios/jgit"

# cd to repository work dir root path (for jgit this is identical to $JGIT_BASE)
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

# - if there are any updates 'git commit' them
git add .eclipse_iplog
git commit

# - type in ipzilla user and password

# -----------------------------------------------------------
# Get the committer data from gerrit:
# - start gerrit gsql via ssh
# options:
# -p : ssh port gerrit is listening on
ssh -p 29418 username@egit.eclipse.org gerrit gsql --format PRETTY

# - type in ssh passphrase for your ssh key
# - run the SQL query (cut and paste content to interactive gerrit shell)
# org.eclipse.jgit.iplog/src/org/eclipse/jgit/iplog/gsql_query.txt
# - copy the query result into the file (no headers, no blank lines):
# $WORK_DIR/.git/gerrit_committers

# -----------------------------------------------------------
# Generate the iplog:
# 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