* [PATCH 0/2] Finishing touches for pull "-w ref"
@ 2005-06-23 23:18 Junio C Hamano
2005-06-23 23:23 ` [PATCH 1/2] Add a bit of developer documentation to pull.h Junio C Hamano
2005-06-23 23:23 ` [PATCH 2/2] http-pull: documentation updates Junio C Hamano
0 siblings, 2 replies; 3+ messages in thread
From: Junio C Hamano @ 2005-06-23 23:18 UTC (permalink / raw)
To: Linus Torvalds; +Cc: git
I'll be sending these two patches to add finishing touches to
"-w ref" support.
[PATCH 1/2] Add a bit of developer documentation to pull.h
[PATCH 2/2] http-pull: documentation updates.
^ permalink raw reply [flat|nested] 3+ messages in thread* [PATCH 1/2] Add a bit of developer documentation to pull.h 2005-06-23 23:18 [PATCH 0/2] Finishing touches for pull "-w ref" Junio C Hamano @ 2005-06-23 23:23 ` Junio C Hamano 2005-06-23 23:23 ` [PATCH 2/2] http-pull: documentation updates Junio C Hamano 1 sibling, 0 replies; 3+ messages in thread From: Junio C Hamano @ 2005-06-23 23:23 UTC (permalink / raw) To: Linus Torvalds; +Cc: git Describe what to implement in fetch() and fetch_ref() for pull backend writers a bit better. Signed-off-by: Junio C Hamano <junkio@cox.net> --- pull.h | 21 +++++++++++++++------ 1 files changed, 15 insertions(+), 6 deletions(-) diff --git a/pull.h b/pull.h --- a/pull.h +++ b/pull.h @@ -1,24 +1,33 @@ #ifndef PULL_H #define PULL_H -/** To be provided by the particular implementation. **/ +/* + * Fetch object given SHA1 from the remote, and store it locally under + * GIT_OBJECT_DIRECTORY. Return 0 on success, -1 on failure. To be + * provided by the particular implementation. + */ extern int fetch(unsigned char *sha1); +/* + * Fetch ref (relative to $GIT_DIR/refs) from the remote, and store + * the 20-byte SHA1 in sha1. Return 0 on success, -1 on failure. To + * be provided by the particular implementation. + */ extern int fetch_ref(char *ref, unsigned char *sha1); -/** If set, the ref filename to write the target value to. **/ +/* If set, the ref filename to write the target value to. */ extern const char *write_ref; -/** If set, the hash that the current value of write_ref must be. **/ +/* If set, the hash that the current value of write_ref must be. */ extern const unsigned char *current_ref; -/** Set to fetch the target tree. */ +/* Set to fetch the target tree. */ extern int get_tree; -/** Set to fetch the commit history. */ +/* Set to fetch the commit history. */ extern int get_history; -/** Set to fetch the trees in the commit history. **/ +/* Set to fetch the trees in the commit history. */ extern int get_all; /* Set to zero to skip the check for delta object base; ------------ ^ permalink raw reply [flat|nested] 3+ messages in thread
* [PATCH 2/2] http-pull: documentation updates. 2005-06-23 23:18 [PATCH 0/2] Finishing touches for pull "-w ref" Junio C Hamano 2005-06-23 23:23 ` [PATCH 1/2] Add a bit of developer documentation to pull.h Junio C Hamano @ 2005-06-23 23:23 ` Junio C Hamano 1 sibling, 0 replies; 3+ messages in thread From: Junio C Hamano @ 2005-06-23 23:23 UTC (permalink / raw) To: Linus Torvalds; +Cc: git Describe -w option. Signed-off-by: Junio C Hamano <junkio@cox.net> --- Documentation/git-http-pull.txt | 6 ++++-- 1 files changed, 4 insertions(+), 2 deletions(-) diff --git a/Documentation/git-http-pull.txt b/Documentation/git-http-pull.txt --- a/Documentation/git-http-pull.txt +++ b/Documentation/git-http-pull.txt @@ -9,7 +9,7 @@ git-http-pull - Downloads a remote GIT r SYNOPSIS -------- -'git-http-pull' [-c] [-t] [-a] [-v] [-d] [--recover] commit-id url +'git-http-pull' [-c] [-t] [-a] [-d] [-v] [-w filename] [--recover] commit-id url DESCRIPTION ----------- @@ -30,7 +30,9 @@ Downloads a remote GIT repository via HT usual, to recover after earlier pull that was interrupted. -v:: Report what is downloaded. - +-w:: + Writes the commit-id into the filename under $GIT_DIR/refs/ on + the local end after the transfer is complete. Author ------ ------------ ^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2005-06-23 23:17 UTC | newest] Thread overview: 3+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2005-06-23 23:18 [PATCH 0/2] Finishing touches for pull "-w ref" Junio C Hamano 2005-06-23 23:23 ` [PATCH 1/2] Add a bit of developer documentation to pull.h Junio C Hamano 2005-06-23 23:23 ` [PATCH 2/2] http-pull: documentation updates Junio C Hamano
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox