SYNOPSIS
git
remote
add
<nick> "ext::<command>[ <arguments>…]"
DESCRIPTION
このリモートヘルパーは、指定の <command> を使用してリモートGitサーバーに接続します。
指定の <command> のstdinに書き込んだデータは、git:// サーバーまたは git-upload-pack または git-receive-pack または (状況に応じて)git-upload-archive に送信されるものと見なし、かつ、 <command> のstdoutからの読み取りは、同一のサービスから受信されたものと見なされます。
コマンドと引数は、エスケープされていない空白で区切られます。
以下のシーケンスには特別な意味があります:
- `% `
-
コマンドまたは引数のリテラル空白
- %%
-
リテラルのパーセント文字
- %s
-
Gitが呼び出したいサービスの名前(receive-pack または upload-pack または upload-archive)に置き換えられます。
- %S
-
Gitが呼び出したいサービスの長い名前(long name)(git-receive-pack または git-upload-pack または git-upload-archive)に置き換えられます。
- %G (引数の最初の文字列である必要があります)
-
This argument will not be passed to <command>. Instead, it will cause the helper to start by sending git:// service requests to the remote side with the service field set to an appropriate value and the repository field set to the rest of the argument. Default is not to send such a request.
This is useful if the remote side is git:// server accessed over some tunnel.
- %V (引数の最初の文字列である必要があります)
-
This argument will not be passed to <command>. Instead it sets the vhost field in the git:// service request (to the rest of the argument). Default is not to send vhost in such request (if sent).
ENVIRONMENT VARIABLES
- GIT_TRANSLOOP_DEBUG
-
設定されている場合、さまざまな読み取り/書き込みに関するデバッグ情報を出力します。
ENVIRONMENT VARIABLES PASSED TO COMMAND
- GIT_EXT_SERVICE
-
サービスヘルパーが呼び出す必要のある長い名前(git-upload-pack など)を設定します。
- GIT_EXT_SERVICE_NOPREFIX
-
サービスヘルパーが呼び出す必要のある名前(upload-pack など)を設定します。
EXAMPLES
このリモートヘルパーは、 git
fetch
<URL> 、 git
clone
<URL> 、 git
push
<URL> 、 git
remote
add
<nick> <URL> などのコマンドを使用するときに、Gitによって透過的に使用され、 <URL>は ext::
で始まります。 例:
- "ext::ssh -i /home/foo/.ssh/somekey user@host.example %S foo/repo"
-
Like host.example:foo/repo, but use /home/foo/.ssh/somekey as keypair and user as the user on the remote side. This avoids the need to edit .ssh/config.
- "ext::socat -t3600 - ABSTRACT-CONNECT:/git-server %G/somerepo"
-
Represents repository with path /somerepo accessible over git protocol at the abstract namespace address /git-server.
- "ext::git-server-alias foo %G/repo"
-
ヘルパープログラム
git-server-alias
foo
を使用してアクセスされるパス /repo を持つリポジトリを表します。リポジトリへのパスとリクエストのタイプは、コマンドラインではなく、通常の git:// プロトコルのようにプロトコルストリームの一部として渡されます。 - "ext::git-server-alias foo %G/repo %Vfoo"
-
ヘルパープログラム
git-server-alias
foo
を使用してアクセスされるパス /repo を持つリポジトリを表します。プロトコルストリームで渡されるリモートサーバーのホスト名は「foo」になります(これにより、複数の仮想Gitサーバーがリンクレベルのアドレスを共有できるようになります)。 - "ext::git-server-alias foo %G/repo% with% spaces %Vfoo"
-
ヘルパープログラム
git-server-alias
foo
を使用してアクセスされるパス/repo
with
spaces
のリポジトリを表します。プロトコルストリームで渡されるリモートサーバーのホスト名は「foo」になります(これにより、複数の仮想Gitサーバーがリンクレベルのアドレスを共有できるようになります)。 - "ext::git-ssl foo.example /bar"
-
ヘルパープログラム
git-ssl
foo.example
/bar
を使用してアクセスされるリポジトリを表します。リクエストのタイプは、ヘルパーが環境変数を使用して決定できます(上記参照)。
SEE ALSO
GIT
Part of the git(1) suite