jagregory / GitSharp forked from henon/GitSharp

Git# --> Git for .NET

This URL has Read+Write access

name age message
file .gitignore Wed Oct 28 02:17:37 -0700 2009 Adding "dist" directory to .gitignore. [nulltoken]
file ChangeLog Sat Dec 06 16:22:20 -0800 2008 2008-12-06 Miguel de Icaza <miguel@novell.com... [Miguel de Icaza]
file Demo.txt Mon Jul 27 14:12:33 -0700 2009 Removed Demo and TestRunner for the sake of Mon... [henon]
directory Git/ Wed Nov 04 12:05:47 -0800 2009 Embedded Commands.xml as a resource file. Fixe... [nulltoken]
file GitSharp licence.txt Sat Oct 10 14:20:59 -0700 2009 Added MiscUtils licence details (http://www.yod... [nulltoken]
directory GitSharp.Core/ Sun Nov 22 16:18:40 -0800 2009 More changes to BasePackConnection to bring it ... [jagregory]
directory GitSharp.Tests/ Sun Nov 22 15:50:20 -0800 2009 Same issue as previous commit. Usages of GetRef... [jagregory]
file GitSharp.build Sun Nov 08 05:35:27 -0800 2009 Moved Diff, Patch and sample.git test resources... [nulltoken]
file GitSharp.sln Wed Nov 04 06:39:22 -0800 2009 Added new JGit licence to the project. This lic... [nulltoken]
directory GitSharp/ Sun Nov 15 10:32:35 -0800 2009 Fixed some resource releasing when checking Rep... [nulltoken]
file JGit licence.txt Wed Nov 04 06:39:22 -0800 2009 Added new JGit licence to the project. This lic... [nulltoken]
directory Logo/ Sat Oct 17 08:19:00 -0700 2009 changed the logo design. [henon]
file MiscUtil licence.txt Sat Oct 10 14:20:59 -0700 2009 Added MiscUtils licence details (http://www.yod... [nulltoken]
file README.txt Wed Oct 28 12:24:45 -0700 2009 updated README.txt [henon]
file SharedAssemblyInfo.cs Tue Oct 27 14:22:57 -0700 2009 As AssemblyVersionAttribute only allows numeri... [nulltoken]
file Winterdom.IO.FileMap License.txt Tue Oct 20 15:15:11 -0700 2009 Splitted "extern" directory into "lib" (depende... [nulltoken]
directory lib/ Tue Oct 20 15:15:11 -0700 2009 Splitted "extern" directory into "lib" (depende... [nulltoken]
file package-GitSharp.cmd Tue Oct 27 07:09:37 -0700 2009 Fixed NAnt script to make resources copied to ... [nulltoken]
file runtests-GitSharp.cmd Thu Oct 22 14:34:30 -0700 2009 Changed Nant variable which holds the build ver... [nulltoken]
directory tools/ Fri Oct 23 10:50:11 -0700 2009 Made tests run. Added missing module from lates... [nulltoken]
file version.txt Wed Oct 28 12:40:04 -0700 2009 pinning gitsharp version 0.2 [henon]
README.txt
== Git# --> Git for .NET ==
... a native Windows version of the fast & free open source version control system

Git# is the most advanced C# implementation of git for the .NET framework and Mono. 
It is aimed to be fully compatible to the original git for linux and can be used as stand 
alone command line application or as library for windows applications such as gui 
frontends or plugins for IDEs.

Git# is released under the BSD license. It is derived from the Java version jgit.
Please refer to the LICENSE.txt files for the complete license.

For more info check out the Git# website at http://www.eqqon.com/index.php/GitSharp

== WARNINGS / CAVEATS   ==

- Symbolic links are not supported because Windows does not directly support them.
  Such links could be damaged.

- Only the timestamp of the index is used by git check if  the index
  is dirty.

- CRLF conversion is never performed. You should therefore
  make sure your projects and workspaces are configured to save files
  with Unix (LF) line endings.

== Features ==

    * Read loose and packed commits, trees, blobs, including
      deltafied objects.

    * Read objects from shared repositories

    * Add files to the index and commit changes

    * Copy trees to local directory, or local directory to a tree.

    * Lazily loads objects as necessary.

    * Read and write .git/config files.

    * Create a new repository.

    * Checkout in dirty working directory if trivial.

    * Walk the history from a given set of commits looking for commits
      introducing changes in files under a specified path.

    * Object transport  
      Fetch via ssh, git, http and bundles.
      Push via ssh, git. Git# does not yet deltify
      the pushed packs so they may be a lot larger than C Git packs.

== Missing Features ==

There are a lot of missing features in GitSharp. You need the real Git 
for those.

- Merging. 

- Repacking.

- Generate a GIT format patch.

- Apply a GIT format patch.

- Documentation. :-)

- gitattributes support
  In particular CRLF conversion is not implemented. Files are treated
  as byte sequences.

- submodule support
  Submodules are not supported or even recognized.

== Support ==

  Post question, comments or patches to the official Git# mailing list at 
  http://groups.google.com/group/gitsharp/.

== Tools and Dependencies ==

GitSharp contains the following open source components:

Included as Source:
* MiscUtil by Jon Skeet and Marc Gravell
* NDesk.Options 

Binary Dependencies:
* DiffieHellman
* ICSharpCode.SharpZipLib
* Org.Mentalis.Security
* Tamir.SharpSSH
* Winterdom.IO.Filemap

Tools:
* NAnt 
* NUnit

== About GIT itself ==

More information about GIT, its repository format, and the canonical
C based implementation can be obtained from the GIT websites:

  http://git.or.cz/
  http://www.kernel.org/pub/software/scm/git/
  http://www.kernel.org/pub/software/scm/git/docs/

More information about the Java implemetation which Git# stems from:
  http://git.or.cz/gitwiki/EclipsePlugin