SYNOPSIS
git-upload-pack [--
[no-
]strict
] [--timeout=
<n>] [--stateless-rpc
] [--advertise-refs
] <directory>
DESCRIPTION
git
fetch-pack
によって呼び出され、通信の反対側で欠落しているオブジェクトを調べ、パッキング後にそれらを送信します。
このコマンドは通常、エンドユーザーによって直接呼び出されることはありません。プロトコルのUIは「git fetch-pack」側にあり、プログラムのペアはリモートリポジトリから更新をプルするために使用されることを目的としています。プッシュ操作については、「git send-pack」を参照してください。
OPTIONS
-
--
[no-
]strict
-
Do not try <directory>/.git/ if <directory> is not a Git directory.
-
--timeout=
<n> -
Interrupt transfer after <n> seconds of inactivity.
-
--stateless-rpc
-
Perform only a single read-write cycle with stdin and stdout. This fits with the HTTP POST request processing model where a program may read the request, write a response, and must exit.
-
--http-backend-info-refs
-
Used by git-http-backend(1) to serve up
$GIT_URL/info/refs
?service=git-upload-pack requests. See "Smart Clients" in gitprotocol-http(5) and "HTTP Transport" in the gitprotocol-v2(5) documentation. Also understood by git-receive-pack(1). - <directory>
-
同期元のリポジトリ。
ENVIRONMENT
-
GIT_PROTOCOL
-
ワイヤープロトコルをハンドシェイクするために使用される内部変数。サーバー管理者は、この変数を渡すことができるようにいくつかのトランスポートを構成する必要がある場合があります。 git(1) のdiscussionを参照してください。
-
GIT_NO_LAZY_FETCH
-
When cloning or fetching from a partial repository (i.e., one itself cloned with
--filter
), the server-sideupload-pack
may need to fetch extra objects from its upstream in order to complete the request. By default,upload-pack
will refuse to perform such a lazy fetch, becausegit
fetch
may run arbitrary commands specified in configuration and hooks of the source repository (andupload-pack
tries to be safe to run even in untrusted.git
directories).This is implemented by having
upload-pack
internally set theGIT_NO_LAZY_FETCH
variable to1
. If you want to override it (because you are fetching from a partial clone, and you are sure you trust it), you can explicitly setGIT_NO_LAZY_FETCH
to0
.
SECURITY
Most Git commands should not be run in an untrusted .git
directory (see the section SECURITY
in git(1)). upload-pack
tries to avoid any dangerous configuration options or hooks from the repository it’s serving, making it safe to clone an untrusted directory and run commands on the resulting clone.
For an extra level of safety, you may be able to run upload-pack
as an alternate user. The details will be platform dependent, but on many systems you can run:
git clone --no-local --upload-pack='sudo -u nobody git-upload-pack' ...
SEE ALSO
GIT
Part of the git(1) suite