是用git生成patch文件然后用email的方式提交
#git clone git://git.kernel.org/pub/scm/linux/kernel/git/padovan/bluetooth-next-2.6.git
#cd bluetooth-next-2.6
#vim drivers/bluetooth/btusb.c
#git add drivers/bluetooth/btusb.c
#git commit -m "Added atheros3012 Chip Firmware download support"
#git log <== to git the previous commit hash code.
#git format-patch -s 1bbe3c8c197a35f79bfddaba099270a2e54ea9c7
please replace the hash code with your repo previous commit.
then you can find the patch under repo directory.
then mail your patch to configuration admin.
退回去
#git reset --hard 1bbe3c8c197a35f79bfddaba099270a2e54ea9c7
本文介绍如何使用Git生成并提交补丁文件。通过具体的步骤演示了如何编辑代码、添加修改、提交更改并生成补丁文件,最后通过电子邮件发送给配置管理员。
566

被折叠的 条评论
为什么被折叠?



