Lines Matching full:git
3 Configure Git
6 This chapter describes maintainer level git configuration.
10 tags can be created by passing the ``-u`` flag to ``git tag``. However,
15 git config user.signingkey "keyname"
17 Alternatively, edit your ``.git/config`` or ``~/.gitconfig`` file by hand:
25 You may need to tell ``git`` to use ``gpg2``
50 This can be configured to happen automatically any time you issue ``git am``
51 by adding the following hook into your git:
55 $ git config am.messageid true
56 $ cat >.git/hooks/applypatch-msg <<'EOF'
58 . git-sh-setup
64 $ chmod a+x .git/hooks/applypatch-msg