How to submit a patch to upsream

//git format patch
git format-patch --subject-prefix="U-Boot][PATCH Vx" --stat -p -n -

git format-patch --subject-prefix="PATCH v2" --cover-letter --stat -p -n10

git format-patch -M (rename file)

// u-boot
git send-email --no-chain-reply-to --no-signed-off-by-cc --quiet --smtp-server xxxxx(smpt address) --suppress-cc=all --confirm=always  --to [email protected] --cc [email protected]

//USB
git send-email --no-chain-reply-to --no-signed-off-by-cc --suppress-cc all -quiet --smtp-server xxxxx(smpt address)  --to [email protected]  --to [email protected] --to [email protected] --cc [email protected] 


If it is the bug, you can add [email protected]

--cc [email protected]


//For v2 patch please add below at  Signed-off-by

    Signed-off-by: Peter Chen <[email protected]>

    ---
    Changes for v2:
        -  what changes
       

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章