On 04/08/2012 02:11 AM, Dan Kenigsberg wrote:

> Anything cooler we can do beyond putting
> 
> SOB=$(git var GIT_AUTHOR_IDENT | sed -n 's/^\(.*>\).*$/Signed-off-by: \1/p')
> grep -qs "^$SOB" "$1" || echo "$SOB" >> "$1"
> 
> at the bottom of .git/hooks/commit-msg ?

To fix 'git format-patch' (which is used by 'git send-email'), use:

git config format.signoff true

But that only adds it when you send a patch, not when you make the
commit.  You can also use 'git commit -s' to add the signoff when you
create the commit, but I don't know of a configuration bool that will
make that automatic, short of your hack on the commit-msg hook.

-- 
Eric Blake   ebl...@redhat.com    +1-919-301-3266
Libvirt virtualization library http://libvirt.org

Attachment: signature.asc
Description: OpenPGP digital signature

_______________________________________________
Arch mailing list
Arch@ovirt.org
http://lists.ovirt.org/mailman/listinfo/arch

Reply via email to