~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to doc/en/user-guide/gpg_signatures.txt

Move all features to bzrlib.tests.features in 2.5

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
GnuPG Signatures
 
2
=============================
 
3
 
 
4
Reasons to Sign Your Repository
 
5
--------------------------------
 
6
 
 
7
Bazaar can sign revisions using GnuPG, a Free Software implementation of the
 
8
OpenPGP digital signature format.  By signing commits a person wanting to
 
9
make use of a branch can be confident where the code came from, assuming the
 
10
GnuPG keys used can be verified.  This could for example prevent worry about
 
11
compromised code in the case where a server hosting Bazaar branches has been
 
12
hacked into.  It could also be used to verify that all code is written by a
 
13
select group of people, such as if contributor agreements are needed.
 
14
 
 
15
Signatures are passed around with commits during branch, push, merge and other
 
16
operations.
 
17
 
 
18
Setting up GnuPG
 
19
--------------
 
20
 
 
21
There are many guides to creating a digital signature key with GnuPG.  See
 
22
for example the `GnuPG Handbook
 
23
<http://www.gnupg.org/gph/en/manual.html#AEN26>`_ or the `Launchpad Wiki
 
24
<https://help.launchpad.net/YourAccount/ImportingYourPGPKey>`_.
 
25
 
 
26
 
 
27
Signing Commits
 
28
---------------
 
29
 
 
30
To sign commits as they are made turn on the ``create_signatures``
 
31
configuration option in your ``bazaar.conf`` or ``locations.conf`` file::
 
32
 
 
33
  create_signatures = always
 
34
 
 
35
When you next make a commit it will ask for the pass phrase for your GnuPG key. 
 
36
If you want GnuPG to remember your password ensure you have ``gnupg-agent``
 
37
installed.
 
38
 
 
39
To sign previous commits to a branch use ``sign-my-commits``.  This will go
 
40
through all revisions in the branch and sign any which match your
 
41
commit name.  You can also pass the name of a contributor to ``sign-my-commits``
 
42
to sign someone else's commits or if your GnuPG key does not match your Bazaar
 
43
name and e-mail::
 
44
 
 
45
  bzr sign-my-commits . "Amy Pond <amy@example.com>"
 
46
 
 
47
It will not sign commits which already have a signature.
 
48
 
 
49
To sign a single commit or a range of commits use the (hidden) command
 
50
``re-sign``::
 
51
 
 
52
  bzr re-sign -r 24
 
53
 
 
54
``re-sign`` is also useful to change an existing signature.
 
55
 
 
56
Verifying Commits
 
57
-----------------
 
58
 
 
59
Signatures can be verified with the ``bzr verify-signatures`` command.  By
 
60
default this will check all commits in the branch and notify that all commits
 
61
are signed by known trusted signatures.  If not all commits have trusted
 
62
signatures it will give a summary of the number of commits which are invalid,
 
63
having missing keys or are not signed.
 
64
 
 
65
The ``verify-signatures`` command can be given a comma separated list of key
 
66
patters to specify a list of acceptable keys.  It can also take a range of
 
67
commits to verify in the current branch.  Finally using the verbose option will
 
68
list each key that is valid or authors for commits which failed::
 
69
 
 
70
  $bzr verify-signatures -kamy -v -r 1..5
 
71
  1 commit with valid signature
 
72
    Amy Pond <amy@example.com> signed 4 commits
 
73
  0 commits with unknown keys
 
74
  1 commit not valid
 
75
    1 commit by author The Doctor <doctor@example.com>
 
76
  0 commits not signed
 
77
 
 
78
Work in Progress
 
79
----------------
 
80
 
 
81
There is still a number of digital signature related features which are hoped
 
82
to be added to Bazaar soon.  These include verificiation in logs, qbzr
 
83
integration and setting branches to require signatures.