Lines Matching +full:commit +full:- +full:message
2 <!-- Explain your changes here... -->
4 ----
5 ## git request-pull output:
7 <!-- START REPLACE ME -->
10 git remote add axboe-tree https://github.com/axboe/liburing
11 git fetch axboe-tree
12 git request-pull axboe-tree/master your_fork_URL your_branch_name
14 Then replace this with the output of `git request-pull` command.
16 <!-- END REPLACE ME -->
18 ----
28 2. Follow the commit message format rules below.
29 … style (see: https://github.com/torvalds/linux/blob/master/Documentation/process/coding-style.rst).
31 ### Commit message format rules:
36 5. Then a `Signed-off-by` tag with your real name and email. For example:
38 Signed-off-by: Foo Bar <foo.bar@gmail.com>
41 The description should be word-wrapped at 72 chars. Some things should
42 not be word-wrapped. They may be some kind of quoted text - long
46 Note that all of this goes in the commit message, not in the pull
48 request does, and each commit message should explain the rationale for
56 If the commit is a fix for an issue, add a `Fixes` tag with the issue
59 Don't use GitHub anonymous email like this as the commit author:
66 ### Commit message example:
72 to be both more efficient, but also to enable multi-threaded use
77 Signed-off-by: Jens Axboe <axboe@kernel.dk>
82 ----