GitSharp/v0.1.0
From eqqon
(Difference between revisions)
m (→Release Message) |
m (→Release Message) |
||
Line 4: | Line 4: | ||
== Release Message == | == Release Message == | ||
- | Thanks to our active development community git# is quickly making progress. | + | Thanks to our active development community git# is quickly making progress. For instance, the command line interface is now able to execute the commands "init" and "clone" (not yet via SSH) so I thought it is time for our first release. Here is git# as it clones itself from github: |
{{code| | {{code| |
Revision as of 16:53, 26 September 2009
Contents |
Downloads
Release Message
Thanks to our active development community git# is quickly making progress. For instance, the command line interface is now able to execute the commands "init" and "clone" (not yet via SSH) so I thought it is time for our first release. Here is git# as it clones itself from github:
E:\henon\GitSharp\gitsharp_v0.1.0_bin>git clone git://github.com/henon/GitSharp.git
Initialized empty Git repository in E:\henon\GitSharp\gitsharp_v0.1.0_bin\GitSharp\.git
Counting objects: 8112
Compressing objects: 100% (2443/2443)
Receiving objects: 100% (8112/8112)
Resolving deltas: 100% (6424/6424)
From git://github.com/henon/GitSharp.git
* [new branch] master -> origin/master
* [new branch] xUnit -> origin/xUnit
* [new tag] target_egit_c6e3b9fe -> target_egit_c6e3b9fe
* [new tag] target_jgit_5c484fc -> target_jgit_5c484fc
* [new tag] v0.1.0 -> v0.1.0
We try to keep the command line interface compatible to "linus-git".
I hope you like it. --Henon 18:31, 26 September 2009 (CEST)
Changes
GitSharp.dll
There is a very long list of things which are now working in GitSharp. Basically, if you wan't to know what is working and what not check out our test suite and run it. You'll see, only about 1% of the tests are failing.
GitSharp.CLI
The following commands/switches are implemented
- --help
- --version
- There is online help for most commands (i.e. git help checkout)
- Many commands have already been stubbed and print their specific options (i.e. git checkout --help)
- git init
- git clone (clones from public repos, clone via SSH is not yet working)
Known Issues
- clone does not work via ssh
... filling in as they are reported