步骤:用git提交patch,并发送邮件列表

一. 先配置git send-mail 的 smtp服务器:
1. 安装git-email:
# apt-get install git git-core git-email

修改gitconfig文件:vim ~/.gitconfig

[color]
ui = auto
[commit]
template = ~/.commit_template
[user]
name = ***
email = ***@***.com
[alias]
pretty = log --branches --remotes --tags --graph --oneline
--decorate
[sendemail]
smtpencryption = tls
smtpserver = smtp.gmail.com
smtpuser = *****.****@gmail.com
smtpserverport = 587
smtppass = abcdef

suppresscc = all //will suppress all auto cc values
confirm = always
#to = *****.****@gmail.com //Specify the primary recipient
#cc = s***[email protected] //CC list

2. Then edit
the .git/hooks/pre-commit file
to contain only the following two lines:

#!/bin/sh
exec git diff --cached | scripts/checkpatch.pl --no-signoff - || true

二. 好了,下面就是提交的步骤了。
1. 按功能分类提交commit ,提交之前先执行脚本 ./scripts/cleanfile xx.

  • 加-s选项,自动Signed-off-by.
  • git commit
    --amend --author " Xxx Zhang "(添加实际的author,如果author是本人,则不要写)
  • commit message
    第一行要是patch的主题(包括patch的从属子系统,和概述),第二行是patch的详细描述。
  • 如果想修改其中的一个commit
    message:
         a)git
    format-patch -n
         b)git
    reset到那个commit,如要更改或添加某个文件,git add; 如要删除某个commit的文件,(git reset
    HEAD^ file),然后 commit --amend
         c)git am *.patch (不用git
    apply,因为apply命令只将patch应用到index,而不会将commit
    message同时应用到git仓库上。如果当前目录下之前执行过git-am,而没有发送email,需要先执行git am
    --abort放弃掉之前的am信息。遇到了一次abort不掉的时候,执行rm -rf
    .git/rebase-apply/就可以了,参照如下Linkhttp://git.661346.n2.nabble.com/Dangerous-quot-git-am-abort-quot-behavior-td5853324.html)

2. 生成patch:

  • git format-patch -2 --cover-letter//2表示从HEAD的commit开始,向前生成两个commit的patch。--cover-letter会生成一个0000-cover-letter.patch,格式和commit
    message类似,第一行是patchset的主题,第二行描述这组patchset的详细信息,它就是邮件中的【PATCH
    0/n】(有必要的话,将测试结果和基于的主线版本写在0000-cover-letter.patch中的详细描述中)。
  • git format-patch -numbered --cover-letter
    --subject-prefix="PATCH v2" (如果不是第一版   patch需要添加版本号,以v2为例)

3. 检查patch:
  ./scripts/checkpatch.pl
0001-nfs-add-a-pr_info.patch (不用检查0000-cover-letter.patch)

4. 发邮件列表:
  git send-email *.patch
  如果想要编辑patch邮件内容,加--annotate选项。
  编辑完一个退出vim用:wn命令,编辑下一个patch,直到最后一个直接wq退出vim即可。

$ git send-email
*.patch
/tmp/59yD80Mjvb/0000-cover-letter.patch
/tmp/59yD80Mjvb/0001-clone-patch-test-001.patch
/tmp/59yD80Mjvb/0002-revised-text.patch
3 files to edit
Who should the emails appear to be from? [chunyan.zhang ]zh**.****@gmail.com//输入发件人邮箱
Emails will be sent from: [email protected]
Who should the emails be sent to? z***@gmail.com //输入收件人邮箱
Message-ID to be used as In-Reply-To for the first email?for_test//随便输入一个ID

附:标准的patch格式
The canonical patch subject line is:

Subject: [PATCH 001/123] subsystem: summary phrase

The canonical patch message body contains the following:

- A "from" line specifying the patch author.

- An empty line.

- The body of the explanation, which will be copied to the
permanent changelog to describe this patch.

- The "Signed-off-by:" lines, described above, which will
also go in the changelog.

- A marker line containing simply "---".

- Any additional comments not suitable for the changelog.

- The actual patch (diff output).

参考:
http://www.freedesktop.org/wiki/Software/PulseAudio/HowToUseGitSendEmail/
http://blog.chinaunix.net/uid-28453894-id-3552774.html
http://kernelnewbies.org/OPWfirstpatch

时间: 2024-10-26 03:33:22

步骤:用git提交patch,并发送邮件列表的相关文章

git 打patch方法

git对比svn有很多优势,这里就不多说了,这里主要讨论打patch的方法. 1.由于打patch的时候一般是将别人的比较,想直接输入到自己的文件 2.采用web的git服务器查看别人的提交记录: 例如如下形式: diff --git a/mediatek/custom/common/hal/audioflinger/Audio_Customization_Common.h b/mediatek/custom/common/hal/audioflinger/Audio_Customization

编写良好的 git 提交信息

编写一个良好的 git 提交信息 提交信息 我们作一次提交,都会提交相关的修改信息,一般这些信息当时都会仔细考虑留下应该留下的那些重要信息,比如为什么需要这次提交,提交解决什么问题等. 而且我们需要好好组织这些信息,一边以后查看,因为这些跟代码一样重要,他们是历史,就像课本一样,一旦留下错误的信息或者难以理解的信息,将会对 后来者,产生非常多的麻烦. 提交信息规范 一般来说,提交信息没有什么强制性的规范,但是希望大家遵循一些基本的规则,这些规则有利于大家正确表达提交内容,留下重要的信息,而忽略那

git提交代码至远程仓库

代码提交 代码提交一般有五个步骤: 1.查看目前代码的修改状态 2.查看代码修改内容 3.暂存需要提交的文件 4.提交已暂存的文件 5.同步到服务器 1.     查看目前代码的修改状态 提交代码之前,首先应该检查目前所做的修改,运行git status命令 a)        已暂存 (changes to be committed) new file //表示新建文件 modified //表示修改文件 deleted //表示删除文件 b)       已修改 (changed but n

怎样用git提交多次改动

在提交完代码后,我们发现所改动的文件还有须要完好的地方,可是我们已经upload过了可是还未合入到库上,此时要提交新的改动有两种做法: 一是等上次的改动合入到库上后,再次upload提交一次,这明显是比較繁琐的方法: 还有一种方法就是amend改动,详细步骤是: (1)改动文件,然后 git add (2)git commit --amend (3)repo sync (4)repo upload 怎样用git提交多次改动,布布扣,bubuko.com

Git的Patch功能

Git的Patch功能 UNIX世界的软件开发大多都是协作式的,因此,Patch(补丁)是一个相当重要的东西,因为几乎所有的大型UNIX项目的普通贡献者,都是通过 Patch来提交代码的.作为最重要的开源项目之一,Linux,也是这样的.普通开发者从软件仓库clone下代码,然后写入代码,做一个Patch, 最后用E-mail发给Linux Kernel的维护者就好了.Git最初作为Linux的版本控制工具,提供了透明.完整.稳定的Patch功能. 我们先介绍一下Patch是什么.如果一个软件有

怎样解决git提交代码冲突

当我们使用git提交代码时,别人可能也同一时候改动了我们改动的文件,可是别人的先合入到配置库里边,这样当我们的提交要合入时.就会产生冲突,能够使用下面步骤来解决冲突: (1) git rebase    分支名称   本地分支名称 (2)rebase之后,就会显示冲突.到目标文件进行改动 (3)git add . (4)git rebase --continue (5) git rebase 分支名称   本地分支名称 (6)repo sync (7)repo upload 如此之后,就可以提交

如何解决git提交代码冲突

当我们使用git提交代码时,别人可能也同时修改了我们修改的文件,但是别人的先合入到配置库里边,这样当我们的提交要合入时,就会产生冲突,可以使用以下步骤来解决冲突: (1) git rebase    分支名称   本地分支名称 (2)rebase之后,就会显示冲突,到目标文件进行修改 (3)git add . (4)git rebase --continue (5) git rebase 分支名称   本地分支名称 (6)repo sync (7)repo upload 如此之后,即可提交代码

如何使用git 生成patch

1,下载代码 git clone git://git.kernel.org/pub/scm/linux/kernel/git/padovan/bluetooth-next-2.6.git cd bluetooth-next-2.6 2,修改代码 vi drivers/bluetooth/btusb.c 3,把代码添加到git管理仓库 git add drivers/bluetooth/btusb.c 4,提交修改 git commit -m "Added atheros3012 Chip Fir

如何使用git 生成patch 和打入patch 标签: gitpatch【转】

本文转载自:http://blog.csdn.net/liuhaomatou/article/details/54410361 平时我们在使用git 管理项目的时候,会遇到这样一种情况,那就是客户使用git 生成patch 给到我们,那我们就需要把客户给到patch 打入到我们的project ,基于这样一个场景,我把git 如何生成patch 和如何打入patch 做总结   生成patch 的方法:(我这里描述的生成patch 是根据commit 记录生成的) 1.例如首先先通过git lo