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.

README 3.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  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 never performed. On Windows you should thereforc
  24. make sure your projects and workspaces are configured to save files
  25. with Unix (LF) line endings.
  26. == Package Features ==
  27. org.eclipse.jgit/
  28. * Read loose and packed commits, trees, blobs, including
  29. deltafied objects.
  30. * Read objects from shared repositories
  31. * Write loose commits, trees, blobs.
  32. * Write blobs from local files or Java InputStreams.
  33. * Read blobs as Java InputStreams.
  34. * Copy trees to local directory, or local directory to a tree.
  35. * Lazily loads objects as necessary.
  36. * Read and write .git/config files.
  37. * Create a new repository.
  38. * Read and write refs, including walking through symrefs.
  39. * Read, update and write the Git index.
  40. * Checkout in dirty working directory if trivial.
  41. * Walk the history from a given set of commits looking for commits
  42. introducing changes in files under a specified path.
  43. * Object transport
  44. Fetch via ssh, git, http, Amazon S3 and bundles.
  45. Push via ssh, git and Amazon S3. JGit does not yet deltify
  46. the pushed packs so they may be a lot larger than C Git packs.
  47. org.eclipse.jgit.pgm/
  48. * Assorted set of command line utilities. Mostly for ad-hoc testing of jgit
  49. log, glog, fetch etc.
  50. == Missing Features ==
  51. There are a lot of missing features. You need the real Git for this.
  52. For some operations it may just be the preferred solution also. There
  53. are not just a command line, there is e.g. git-gui that makes committing
  54. partial files simple.
  55. - Merging.
  56. - Repacking.
  57. - Generate a GIT format patch.
  58. - Apply a GIT format patch.
  59. - Documentation. :-)
  60. - gitattributes support
  61. In particular CRLF conversion is not implemented. Files are treated
  62. as byte sequences.
  63. - submodule support
  64. Submodules are not supported or even recognized.
  65. == Support ==
  66. Post question, comments or patches to the git@vger.kernel.org mailing list.
  67. == Contributing ==
  68. See SUBMITTING_PATCHES in this directory. However, feedback and bug reports
  69. are also contributions.
  70. == About GIT ==
  71. More information about GIT, its repository format, and the canonical
  72. C based implementation can be obtained from the GIT websites:
  73. http://git.or.cz/
  74. http://www.kernel.org/pub/software/scm/git/
  75. http://www.kernel.org/pub/software/scm/git/docs/