Lines Matching full:git
1 Configuring Git
4 This chapter describes maintainer level git configuration.
9 ``-u <key-id>`` to ``git tag``. However, since you would *usually* use the same
13 git config user.signingkey "keyname"
15 Alternatively, edit your ``.git/config`` or ``~/.gitconfig`` file by hand::
22 You may need to tell ``git`` to use ``gpg2``::
46 This can be configured to happen automatically any time you issue ``git am``
47 by adding the following hook into your git::
49 $ git config am.messageid true
50 $ cat >.git/hooks/applypatch-msg <<'EOF'
52 . git-sh-setup
58 $ chmod a+x .git/hooks/applypatch-msg