diff options
author | Junio C Hamano <junkio@cox.net> | 2006-07-28 13:25:20 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-07-28 13:25:20 -0700 |
commit | fff8fd5b1ee9c13694c29ba3544f5b1ebf0f4fb2 (patch) | |
tree | beb72a990a86ad34c230e7f81d5091aed344d2d7 /Documentation/git-local-fetch.txt | |
parent | Merge branch 'lt/web' (diff) | |
parent | Teach git-http-fetch the --stdin switch (diff) | |
download | tgif-fff8fd5b1ee9c13694c29ba3544f5b1ebf0f4fb2.tar.xz |
Merge branch 'pb/multi-fetch'
* pb/multi-fetch:
Teach git-http-fetch the --stdin switch
Teach git-local-fetch the --stdin switch
Make pull() support fetching multiple targets at once
Make pull() take some implicit data as explicit arguments
Diffstat (limited to 'Documentation/git-local-fetch.txt')
-rw-r--r-- | Documentation/git-local-fetch.txt | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Documentation/git-local-fetch.txt b/Documentation/git-local-fetch.txt index 87abec1c4e..2fbdfe086a 100644 --- a/Documentation/git-local-fetch.txt +++ b/Documentation/git-local-fetch.txt @@ -29,6 +29,12 @@ OPTIONS Writes the commit-id into the filename under $GIT_DIR/refs/<filename> on the local end after the transfer is complete. +--stdin:: + Instead of a commit id on the commandline (which is not expected in this + case), 'git-local-fetch' expects lines on stdin in the format + + <commit-id>['\t'<filename-as-in--w>] + Author ------ Written by Junio C Hamano <junkio@cox.net> |