You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. == Java GIT ==
  2. This package is licensed under the BSD.
  3. org.eclipse.jgit/
  4. A pure Java library capable of being run standalone, with no
  5. additional support libraries. Some JUnit tests are provided
  6. to exercise the library. The library provides functions to
  7. read and write a GIT formatted repository.
  8. All portions of jgit are covered by the BSD. Absolutely no GPL,
  9. LGPL or EPL contributions are accepted within this package.
  10. org.eclipse.jgit.test/
  11. Unit tests for org.eclipse.jgit and the same licensing rules.
  12. == WARNINGS / CAVEATS ==
  13. - Symbolic links are not supported because java does not support it.
  14. Such links could be damaged.
  15. - Only the timestamp of the index is used by jgit check if the index
  16. is dirty.
  17. - Don't try the library with a JDK other than 1.6 (Java 6) unless you
  18. are prepared to investigate problems yourself. JDK 1.5.0_11 and later
  19. Java 5 versions *may* work. Earlier versions do not. JDK 1.4 is *not*
  20. supported. Apple's Java 1.5.0_07 is reported to work acceptably. We
  21. have no information about other vendors. Please report your findings
  22. if you try.
  23. - CRLF conversion is performed depending on the core.autocrlf setting,
  24. however Git for Windows by default stores that setting during
  25. installation in the "system wide" configuration file. If Git is not
  26. installed, use the global or repository configuration for the
  27. core.autocrlf setting.
  28. - The system wide configuration file is located relative to where C
  29. Git is installed. Make sure Git can be found via the PATH
  30. environment variable. When installing Git for Windows check the "Run
  31. Git from the Windows Command Prompt" option. There are other options
  32. like the jgit.gitprefix system propety or Eclipse settings that can
  33. be used for pointing out where C Git is installed. Modifying PATH is
  34. the recommended option if C Git is installed.
  35. - We try to use the same notation of $HOME as C Git does. On Windows
  36. this is often not same value as the user.home system property.
  37. == Package Features ==
  38. org.eclipse.jgit/
  39. * Read loose and packed commits, trees, blobs, including
  40. deltafied objects.
  41. * Read objects from shared repositories
  42. * Write loose commits, trees, blobs.
  43. * Write blobs from local files or Java InputStreams.
  44. * Read blobs as Java InputStreams.
  45. * Copy trees to local directory, or local directory to a tree.
  46. * Lazily loads objects as necessary.
  47. * Read and write .git/config files.
  48. * Create a new repository.
  49. * Read and write refs, including walking through symrefs.
  50. * Read, update and write the Git index.
  51. * Checkout in dirty working directory if trivial.
  52. * Walk the history from a given set of commits looking for commits
  53. introducing changes in files under a specified path.
  54. * Object transport
  55. Fetch via ssh, git, http, Amazon S3 and bundles.
  56. Push via ssh, git and Amazon S3. JGit does not yet deltify
  57. the pushed packs so they may be a lot larger than C Git packs.
  58. org.eclipse.jgit.pgm/
  59. * Assorted set of command line utilities. Mostly for ad-hoc testing of jgit
  60. log, glog, fetch etc.
  61. == Missing Features ==
  62. There are a lot of missing features. You need the real Git for this.
  63. For some operations it may just be the preferred solution also. There
  64. are not just a command line, there is e.g. git-gui that makes committing
  65. partial files simple.
  66. - Merging.
  67. - Repacking.
  68. - Generate a GIT format patch.
  69. - Apply a GIT format patch.
  70. - Documentation. :-)
  71. - gitattributes support
  72. In particular CRLF conversion is not implemented. Files are treated
  73. as byte sequences.
  74. - submodule support
  75. Submodules are not supported or even recognized.
  76. == Support ==
  77. Post question, comments or patches to the git@vger.kernel.org mailing list.
  78. == Contributing ==
  79. See SUBMITTING_PATCHES in this directory. However, feedback and bug reports
  80. are also contributions.
  81. == About GIT ==
  82. More information about GIT, its repository format, and the canonical
  83. C based implementation can be obtained from the GIT websites:
  84. http://git.or.cz/
  85. http://www.kernel.org/pub/software/scm/git/
  86. http://www.kernel.org/pub/software/scm/git/docs/