Allow project decorations regardless of repository root location
[egit/torarne.git] / README
blob96be43c55829ed7c0e509c105ceccb3633f7b238
1             == Java GIT and Eclipse GIT plugin ==
3 Parts of this package are licensed under the BSD, and others are
4 licensed under the EPL.  Please refer to the COPYING and LICENSE 
5 files for the complete licenses within each package, and please 
6 refer to the individual source file header to determine
7 which license covers it.
10 This package is actually composed of three major components plus
11 three for packaging.
13   org.spearce.jgit/
15     A pure Java library capable of being run standalone, with no
16     additional support libraries.  Some JUnit tests are provided
17     to exercise the library.  The library provides functions to
18     read and write a GIT formatted repository.
20     All portions of jgit are covered by the BSD.  Absolutely no GPL,
21     LGPL or EPL contributions are accepted within this package.
23   org.spearce.jgit.test/
24     Unit tests for org.spearce.jgit and the same licensing rules.
26   org.spearce.egit.core/
28     An Eclipse plugin providing an interface to org.spearce.jgit
29     and support routines to allow processing against the Eclipse
30     workspace and resource APIs, rather than the standard Java
31     file APIs.  It also supplies the team provider implementation.
32     Everything here is EPL.
34   org.spearce.egit.ui/
36     An Eclipse plugin providing the user interface on top of
37     org.spearce.egit.core.
39     Everything here is EPL.
41   org.spearce.egit.core.test/
43     Unit tests for org.spearce.egit.core.
45     Everything here is EPL.
47   org.spearce.egit/
49     A plugin for packaging
51     Everything here is EPL.
53   org.spearce.egit-feature
55     Also packaging. This project is for building an Eclipse "feature"
56     out of the plugins above.
58     Everything here is EPL.
60   org.spearce.egit-updatesite/
62     This package is for producing and update site, i.e. a web site
63     you can point your eclipse at and just upgrade.
65     Everything here is EPL.
67             == WARNINGS / CAVEATS              ==
69 - Symbolic links are not supported because java does not support it.
70   Such links could be damaged.
72 - Only the timestamp of the index is used by jgit check if  the index
73   is dirty.
75 - Don't try the plugin with a JDK other than 1.6 (Java 6) unless you
76   are prepared to investigate problems yourself. JDK 1.5.0_11 and later
77   Java 5 versions *may* work. Earlier versions do not. JDK 1.4 is *not*
78   supported. Apple's Java 1.5.0_07 is reported to work acceptably. We
79   have no information about other vendors. Please report your findings
80   if you try.
82 - CRLF conversion is never performed. On Windows you should thereforc
83   make sure your projects and workspaces are configured to save files
84   with Unix (LF) line endings.
86             == COMPATIBILITY                   ==
88 - Eclipse 3.4 is the minimum Eclipse version.
90 - Newer version of EGit/JGit may implement new functionality, remove
91   existing functions and change others without other notice than what
92   is written in the commit log and source files themselves.
95             == Package Features                ==
97   org.spearce.jgit/
99     * Read loose and packed commits, trees, blobs, including
100       deltafied objects.
102     * Read objects from shared repositories
104     * Write loose commits, trees, blobs.
106     * Write blobs from local files or Java InputStreams.
108     * Read blobs as Java InputStreams.
110     * Copy trees to local directory, or local directory to a tree.
112     * Lazily loads objects as necessary.
114     * Read and write .git/config files.
116     * Create a new repository.
118     * Read and write refs, including walking through symrefs.
120     * Read, update and write the Git index.
122     * Checkout in dirty working directory if trivial.
124     * Walk the history from a given set of commits looking for commits
125       introducing changes in files under a specified path.
127     * Object transport
128       Fetch via ssh, git, http, Amazon S3 and bundles.
129       Push via ssh, git and Amazon S3. JGit does not yet deltify
130       the pushed packs so they may be a lot larger than C Git packs.
132   org.spearce.jgit.pgm
134     * Assorted set of command line utilities. Mostly for ad-hoc testing of jgit
135       log, glog, fetch etc.
137   org.spearce.egit.core/
139     * Supplies an Eclipse team provider.
141     * Connect/disconnect the provider to a project.
143     * Search for the repositories associated with a project by
144       autodetecting the GIT repository directories.
146     * Store which repositories are tied to which containers in the
147       Eclipse workspace.
149     * Tracks moves/renames/deletes and reflects them in the cache
150       tree.
152     * Resolves through linked containers.
154   org.spearce.egit.ui/
156     * Connect team provider wizard panels.
158     * Connect to GIT team provider by making a new repository.
160     * Connect to GIT team provider by searching local filesystem
161       for existing repository directories.
163     * Team actions: track (add), untrack (remove), disconnect, show
164       history, compare version.
166     * Resource decorator shows file/directory state in the package
167       explorer and other views.
169     * Creating new commits or amending commits.
171     * Graphical history viewer with the ability to compare versions
172       using eclipse built-in compare editor.
174      * Clone, push, fetch
176             == Missing Features                ==
178 There are a lot of missing features. You need the real Git for this.
179 For some operations it may just be the preferred solution also. There
180 are not just a command line, there is e.g. git-gui that makes committing
181 partial files simple.
183 - Merging. 
185 - Repacking from within the plugin.
187 - Generate a GIT format patch.
189 - Apply a GIT format patch.
191 - Documentation. :-)
193 - gitattributes support
194   In particular CRLF conversion is not implemented. Files are treated
195   as byte sequences.
197 - submodule support
198   Submodules are not supported or even recognized.
200 - The Eclipse plugin cannot handle files outside any Eclipse project. You
201   need commit changes to such files outside of Eclipse.
203             == Support                         ==
205   Post question, comments or patches to the git@vger.kernel.org mailing list.
208             == Contributing                    ==
210   See SUBMITTING_PATCHES in this directory. However, feedback and bug reports
211   are also contributions.
214             == About GIT                       ==
216 More information about GIT, its repository format, and the canonical
217 C based implementation can be obtained from the GIT websites:
219   http://git.or.cz/
220   http://www.kernel.org/pub/software/scm/git/
221   http://www.kernel.org/pub/software/scm/git/docs/