Git fork
at reftables-rust 83 lines 1.9 kB view raw
1git-fmt-merge-msg(1) 2==================== 3 4NAME 5---- 6git-fmt-merge-msg - Produce a merge commit message 7 8 9SYNOPSIS 10-------- 11[verse] 12'git fmt-merge-msg' [-m <message>] [--into-name <branch>] [--log[=<n>] | --no-log] 13'git fmt-merge-msg' [-m <message>] [--log[=<n>] | --no-log] -F <file> 14 15DESCRIPTION 16----------- 17Takes the list of merged objects on stdin and produces a suitable 18commit message to be used for the merge commit, usually to be 19passed as the '<merge-message>' argument of 'git merge'. 20 21This command is intended mostly for internal use by scripts 22automatically invoking 'git merge'. 23 24OPTIONS 25------- 26 27--log[=<n>]:: 28 In addition to branch names, populate the log message with 29 one-line descriptions from the actual commits that are being 30 merged. At most <n> commits from each merge parent will be 31 used (20 if <n> is omitted). This overrides the `merge.log` 32 configuration variable. 33 34--no-log:: 35 Do not list one-line descriptions from the actual commits being 36 merged. 37 38--summary:: 39--no-summary:: 40 Synonyms to --log and --no-log; these are deprecated and will be 41 removed in the future. 42 43-m <message>:: 44--message <message>:: 45 Use <message> instead of the branch names for the first line 46 of the log message. For use with `--log`. 47 48--into-name <branch>:: 49 Prepare the merge message as if merging to the branch `<branch>`, 50 instead of the name of the real branch to which the merge is made. 51 52-F <file>:: 53--file <file>:: 54 Take the list of merged objects from <file> instead of 55 stdin. 56 57CONFIGURATION 58------------- 59include::config/fmt-merge-msg.adoc[] 60 61merge.summary:: 62 Synonym to `merge.log`; this is deprecated and will be removed in 63 the future. 64 65EXAMPLES 66-------- 67 68--------- 69$ git fetch origin master 70$ git fmt-merge-msg --log <$GIT_DIR/FETCH_HEAD 71--------- 72 73Print a log message describing a merge of the "master" branch from 74the "origin" remote. 75 76 77SEE ALSO 78-------- 79linkgit:git-merge[1] 80 81GIT 82--- 83Part of the linkgit:git[1] suite