> Sorry about this mistake.
> I followed instructions at
> here(http://code.google.com/p/ganeti/wiki/DeveloperGuidelines#Useful_git_repository_config_snippet),
> but then I think 'thread = false' should be change to true isn't it?

In my .git/config it says

[core]
        repositoryformatversion = 0
        filemode = true
        bare = false
        logallrefupdates = true
[sendemail]
        chainreplyto = false
        to = [email protected]
        thread = false
        confirm = compose
        smtpserver = ...
        smtpssl = false
        smtpencryption=none
        suppressfrom = true
[format]
        signoff = true
        thread = shallow
[branch]
        autosetuprebase = always
[branch "master"]
        remote = origin
        merge = refs/heads/master
        rebase = true

And sequence of commands I carry out (for multiple-patch patch series) is

git format-patch -s --minimal --cover-letter --subject-prefix="PATCH master" 
origin/master
# ed 0000-*.patch
for patch in 00*.patch; do git send-email $patch; done

I hope this helps to get the headers right.

Thanks,
Klaus

-- 
Klaus Aehlig
Google Germany GmbH, Dienerstr. 12, 80331 Muenchen
Registergericht und -nummer: Hamburg, HRB 86891
Sitz der Gesellschaft: Hamburg
Geschaeftsfuehrer: Graham Law, Christine Elizabeth Flores

Reply via email to