Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. # -----------------------------------------------------------
  2. # This document describes how to generate the Eclipse ip log
  3. # for the eclipse project technology.jgit using a local clone
  4. # of the git repository
  5. # git://egit.eclipse.org/jgit.git
  6. # starting point is a manually written file
  7. # .eclipse_iplog
  8. # located in the repository's work dir root path
  9. # which is describing the project, see first section of this
  10. # file in the jgit root directory:
  11. # $JGIT_BASE/.eclipse_iplog
  12. # -----------------------------------------------------------
  13. # Prepare:
  14. # jgit work tree base dir
  15. export JGIT_BASE="c:/data/ide/helios/jgit"
  16. # repository work dir root path
  17. export WORK_DIR="c:/data/ide/helios/jgit"
  18. # cd to repository work dir root path (for jgit this is identical to $JGIT_BASE)
  19. cd $WORK_DIR
  20. # -----------------------------------------------------------
  21. # Update the CQ list:
  22. # - this command updates file .eclipse_iplog
  23. java -jar $JGIT_BASE/org.eclipse.jgit.pgm/target/jgit-cli.jar eclipse-ipzilla
  24. # - if there are any updates 'git commit' them
  25. git add .eclipse_iplog
  26. git commit
  27. # - type in ipzilla user and password
  28. # -----------------------------------------------------------
  29. # Get the committer data from gerrit:
  30. # - start gerrit gsql via ssh
  31. # options:
  32. # -p : ssh port gerrit is listening on
  33. ssh -p 29418 username@egit.eclipse.org gerrit gsql --format PRETTY
  34. # - type in ssh passphrase for your ssh key
  35. # - run the SQL query (cut and paste content to interactive gerrit shell)
  36. # org.eclipse.jgit.iplog/src/org/eclipse/jgit/iplog/gsql_query.txt
  37. # - copy the query result into the file (no headers, no blank lines):
  38. # $WORK_DIR/.git/gerrit_committers
  39. # -----------------------------------------------------------
  40. # Generate the iplog:
  41. # options:
  42. # -- version : the project version the iplog is to be generated for
  43. # - o : the output file
  44. java -jar $JGIT_BASE/org.eclipse.jgit.pgm/target/jgit-cli.jar eclipse-iplog --version=0.8.0 -o jgit-0.8.0.xml