From: "Shawn O. Pearce" <spearce@spearce.org>
To: Robin Rosenberg <robin.rosenberg@dewire.com>
Cc: git@vger.kernel.org
Subject: [JGIT PATCH 0/5] Add jgit init, clone, receive-pack; transport fixes
Date: Tue, 23 Dec 2008 10:03:38 -0800 [thread overview]
Message-ID: <1230055423-9944-1-git-send-email-spearce@spearce.org> (raw)
Define a "jgit init", "jgit clone" commands from the command line.
Add "jgit receive-pack". This now works from C git:
git push --receive-pack='jgit receive-pack' dst.git
Fix issue #22, causing jgit to fetch too many objects during an
initial clone/fetch of a repository.
Change "jgit daemon" so it can run outside of a repository, making
it slightly more useful.
Shawn O. Pearce (5):
Add "jgit receive-pack" and permit commands to start not in a
repository
Add "jgit init" command to create a new repository
Modify "jgit daemon" so it can run outside of a repository
Add "jgit clone" to support cloning off URLs that are JGit specific
Fix "fetch pulled too many objects" when auto-following tags
.../services/org.spearce.jgit.pgm.TextBuiltin | 3 +
.../org/spearce/jgit/pgm/AbstractFetchCommand.java | 126 ++++++++++++++
.../src/org/spearce/jgit/pgm/Clone.java | 177 ++++++++++++++++++++
.../src/org/spearce/jgit/pgm/Daemon.java | 33 +---
.../src/org/spearce/jgit/pgm/Fetch.java | 83 +---------
.../src/org/spearce/jgit/pgm/Init.java | 60 +++++++
.../src/org/spearce/jgit/pgm/Main.java | 19 ++-
.../src/org/spearce/jgit/pgm/ReceivePack.java | 67 ++++++++
.../src/org/spearce/jgit/pgm/TextBuiltin.java | 24 +++-
.../jgit/transport/BaseFetchConnection.java | 26 ++-
.../jgit/transport/BasePackFetchConnection.java | 25 +++-
.../spearce/jgit/transport/FetchConnection.java | 21 ++-
.../org/spearce/jgit/transport/FetchProcess.java | 6 +-
.../spearce/jgit/transport/TransportBundle.java | 3 +-
.../jgit/transport/WalkFetchConnection.java | 14 ++-
15 files changed, 544 insertions(+), 143 deletions(-)
create mode 100644 org.spearce.jgit.pgm/src/org/spearce/jgit/pgm/AbstractFetchCommand.java
create mode 100644 org.spearce.jgit.pgm/src/org/spearce/jgit/pgm/Clone.java
create mode 100644 org.spearce.jgit.pgm/src/org/spearce/jgit/pgm/Init.java
create mode 100644 org.spearce.jgit.pgm/src/org/spearce/jgit/pgm/ReceivePack.java
next reply other threads:[~2008-12-23 18:05 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-12-23 18:03 Shawn O. Pearce [this message]
2008-12-23 18:03 ` [JGIT PATCH 1/5] Add "jgit receive-pack" and permit commands to start not in a repository Shawn O. Pearce
2008-12-23 18:03 ` [JGIT PATCH 2/5] Add "jgit init" command to create a new repository Shawn O. Pearce
2008-12-23 18:03 ` [JGIT PATCH 3/5] Modify "jgit daemon" so it can run outside of a repository Shawn O. Pearce
2008-12-23 18:03 ` [JGIT PATCH 4/5] Add "jgit clone" to support cloning off URLs that are JGit specific Shawn O. Pearce
2008-12-23 18:03 ` [JGIT PATCH 5/5] Fix "fetch pulled too many objects" when auto-following tags Shawn O. Pearce
2008-12-31 7:12 ` [JGIT PATCH 4/5] Add "jgit clone" to support cloning off URLs that are JGit specific Robin Rosenberg
2008-12-31 7:35 ` Shawn O. Pearce
2008-12-31 19:04 ` [JGIT PATCH] Improve the sideband progress scaper to be more accurate Shawn O. Pearce
2009-01-03 22:12 ` Robin Rosenberg
2009-01-06 19:23 ` Nicolas Pitre
2009-01-06 19:27 ` Shawn O. Pearce
2009-01-06 20:55 ` Nicolas Pitre
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1230055423-9944-1-git-send-email-spearce@spearce.org \
--to=spearce@spearce.org \
--cc=git@vger.kernel.org \
--cc=robin.rosenberg@dewire.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).