hwmon: (nct6775) Use NUM_FAN consistently
[linux-2.6/btrfs-unstable.git] / Documentation / maintainer / configure-git.rst
blob78bbbb0d2c84992d5e9800173e4530e11dd99a4b
1 .. _configuregit:
3 Configure Git
4 =============
6 This chapter describes maintainer level git configuration.
8 Tagged branches used in :ref:`Documentation/maintainer/pull-requests.rst
9 <pullrequests>` should be signed with the developers public GPG key. Signed
10 tags can be created by passing the ``-u`` flag to ``git tag``. However,
11 since you would *usually* use the same key for the same project, you can
12 set it once with
15         git config user.signingkey "keyname"
17 Alternatively, edit your ``.git/config`` or ``~/.gitconfig`` file by hand:
20         [user]
21                 name = Jane Developer
22                 email = jd@domain.org
23                 signingkey = jd@domain.org
25 You may need to tell ``git`` to use ``gpg2``
28         [gpg]
29                 program = /path/to/gpg2
31 You may also like to tell ``gpg`` which ``tty`` to use (add to your shell rc file)
34         export GPG_TTY=$(tty)