Lines Matching +full:g +full:- +full:link
7 Documentation/maintainer/pull-requests.rst) should be signed with the
9 ``-u <key-id>`` to ``git tag``. However, since you would *usually* use the same
10 key for the project, you can set it in the configuration and use the ``-s``
11 flag. To set the default ``key-id`` use::
34 ----------------------------------------
39 patch to a subsystem tree, it is a good idea to provide a Link: tag with a
42 The link tag will look like this::
44 Link: https://lore.kernel.org/r/<message-id>
50 $ cat >.git/hooks/applypatch-msg <<'EOF'
52 . git-sh-setup
53 perl -pi -e 's|^Message-I[dD]:\s*<?([^>]+)>?$|Link: https://lore.kernel.org/r/$1|g;' "$1"
54 test -x "$GIT_DIR/hooks/commit-msg" &&
55 exec "$GIT_DIR/hooks/commit-msg" ${1+"$@"}
58 $ chmod a+x .git/hooks/applypatch-msg