2012-08-21 14 views
36

gitコマンドラインを使ってGitHubで署名付きタグを作成しようとしています。私は(サンプル)ユーザ名Full Name (skytreader) <[email protected]>でGPGキーを生成しました。これで、私はsigned tagを作成しようとします。しかし、次のエラーが表示されます。gitタグ付け用のGPGキーの生成

gpg: skipped "full <[email protected]>": secret key not available 
gpg: signing failed: secret key not available 
error: gpg failed to sign the data 
error: unable to sign the tag 

私は、指定されたユーザー名で別のキーを作成するだけでよいことを実感します。しかし、「full」という名前を入力すると、gpgは私の名前が少なくとも5文字でなければならないと不平を言う。

どうすればこのキーをgitで使用できますか?

私のタグをGPGで署名するためにgitのユーザ名を変更して、実際の名前が少なくとも5文字長くなるようにしますか?

答えて

14

コミッタ名は~/.gitconfigファイルにあります。そのエントリを実際の名前に変更します(これはどのようにしてコミットするかです)。

git config --global user.name "<name>" 
+0

もう1つ。私のgitconfigに "(skytreader)"部分を含めることは可能ですか(私は別のGPGキーを生成する必要はありません)? – skytreader

+6

これは何でも構いません。実際には '-u'または' --local-user'フラグを使って特定の ''を指定することができます( 'git config --global user.signingkey 'でグローバルに設定することもできます)。 – Christopher

35

まず、あなたのID用GPGキーが存在するかどうかを確認必要があります:あなたは、あなたのお気に入りのエディタでファイル、または単に問題を編集することができます。

​​

あなたはこのような何か表示されている場合:何のGPGキーが存在しない場合

  1. pub 2048R/6AB3587A 2013-05-23
  2. uid xxx (gpg for xxx)
  3. sub 2048R/64CB327A 2013-05-23

を。

gpg (GnuPG) 2.0.14; Copyright (C) 2009 Free Software Foundation, Inc. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law.

Please select what kind of key you want:

  1. (1) RSA and RSA (default)
  2. (2) DSA and Elgamal
  3. (3) DSA (sign only)
  4. (4) RSA (sign only)

Your selection? RSA keys may be between 1024 and 4096 bits long. What keysize do you want? (2048)
Requested keysize is 2048 bits
Please specify how long the key should be valid.

  0 = key does not expire 
     <n> = key expires in n days 
     <n>w = key expires in n weeks 
     <n>m = key expires in n months 
     <n>y = key expires in n years 

Key is valid for? (0)
Key does not expire at all
Is this correct? (y/N) y

GnuPG needs to construct a user ID to identify your key. 

Real name: xxx 
Email address: [email protected] 
Comment: gpg for xxx 

You selected this USER-ID: 
    "xxx(gpg for xxx) <[email protected]>" 

Change (N)ame, (C)omment, (E)mail or (O)kay/(Q)uit? O 
You need a Passphrase to protect your secret key. 

can't connect to `/xxx/.gnupg/S.gpg-agent': No such file or directory 
We need to generate a lot of random bytes. It is a good idea to perform 
some other action (type on the keyboard, move the mouse, utilize the 
disks) during the prime generation; this gives the random number 
generator a better chance to gain enough entropy. 
+0

私のgitconfigで一致していないので、私のためにコメントフィールドを空白にしてください。 –

8

すでに生成されたキーを持っている場合は、あなたがGitのユーザーIDとのマッチングを気にすることなく、その特定のキーを使用するようにgitに伝えることができます(:あなたはこの出力を持っている

$ gpg --gen-key 

次を作成する必要があります名前+電子メール)とGPGキーのID。あなたのgit user.emailは、あなたの署名されたタグのためのあなたのGPGキーの電子メールの1つにマッチするか、他のユーザにとって有用であるようにコミットする必要があります。

であなたのgitのグローバル設定を設定し、コンピュータ上のグローバルな使用のためにキーを設定するには:

git config --global user.signingkey 6AB3587A 

それとも、あなたが持つにいるだけで、現在のリポジトリにuser.signingkeyを設定することができます。

git config user.signingkey 6AB3587A 
+0

私は 'git config --local user.signingkey 6AB3587A'を好んでいます。 – dotslash

関連する問題