* [Buildroot] GIT :: signing issue
@ 2012-03-27 19:24 MERCADIER Johann
2012-03-27 20:17 ` Alexandre Pereira da Silva
2012-03-27 22:24 ` Arnout Vandecappelle
0 siblings, 2 replies; 4+ messages in thread
From: MERCADIER Johann @ 2012-03-27 19:24 UTC (permalink / raw)
To: buildroot
Hi all,
my signature do not conform with the licence as my full name should be
written and not just the initials.
So I have modified git config as is:
___[ SHELL
]____________________________________________________________________________
$ git repo-config --list
user.name=Johann MERCADIER
user.email=johann.mercadier at imerir.com
core.repositoryformatversion=0
core.filemode=true
core.bare=false
core.logallrefupdates=true
remote.origin.fetch=+refs/heads/*:refs/remotes/origin/*
remote.origin.url=git://git.buildroot.net/buildroot
branch.master.remote=origin
branch.master.merge=refs/heads/master
sendemail.chainreplyto=false
user.name=Johann MERCADIER
user.email=johann.mercadier at imerir.com
$ tail ~/.bashrc
# enable programmable completion features (you don't need to enable
# this, if it's already enabled in /etc/bash.bashrc and /etc/profile
# sources /etc/bash.bashrc).
if [ -f /etc/bash_completion ] && ! shopt -oq posix; then
. /etc/bash_completion
fi
export GIT_AUTHOR_NAME="Johann MERCADIER"
export GIT_COMMITTER_NAME="Johann MERCADIER"
export GIT_AUTHOR_EMAIL="johann.mercadier at imerir.com"
_________________________________________________________________________________________
But when I create the patch and try to send it I still have:
Send this email? ([y]es|[n]o|[q]uit|[a]ll): n
(mbox) Adding cc: JoM <johann.mercadier@imerir.com> from line 'From: JoM <
johann.mercadier@imerir.com>'
/\
Where these initials come from___________________________________/
I don't know where I can modify them and didn't found anything relevant on
the net... If someone as a clue it could help me finish to add definitively
this patch.
Thanks.
--
Cordialement.
___Johann MERCADIER___
:(){ :|:& };:
"I am the Unknown lead by the Unknowing.
I have done so much with so little for so long
that I am now qualified to do anything with nothing."
HOOSEEK (http://www.hooseek.com/) 1?moteur de recherche solidaire!
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20120327/184e8e74/attachment.html>
^ permalink raw reply [flat|nested] 4+ messages in thread
* [Buildroot] GIT :: signing issue
2012-03-27 19:24 [Buildroot] GIT :: signing issue MERCADIER Johann
@ 2012-03-27 20:17 ` Alexandre Pereira da Silva
2012-03-27 22:24 ` Arnout Vandecappelle
1 sibling, 0 replies; 4+ messages in thread
From: Alexandre Pereira da Silva @ 2012-03-27 20:17 UTC (permalink / raw)
To: buildroot
Did you check your account info in /etc/passwd?
May git is getting this information from there.
On Tue, Mar 27, 2012 at 4:24 PM, MERCADIER Johann
<johann.mercadier@imerir.com> wrote:
> Hi all,
> ??my signature do not conform with the licence as my full name should be
> written and not just the initials.
> ??So I have modified git config as is:
> ___[ SHELL
> ]____________________________________________________________________________
> $ git repo-config --list
> user.name=Johann MERCADIER
> user.email=johann.mercadier at imerir.com
> core.repositoryformatversion=0
> core.filemode=true
> core.bare=false
> core.logallrefupdates=true
> remote.origin.fetch=+refs/heads/*:refs/remotes/origin/*
> remote.origin.url=git://git.buildroot.net/buildroot
> branch.master.remote=origin
> branch.master.merge=refs/heads/master
> sendemail.chainreplyto=false
> user.name=Johann MERCADIER
> user.email=johann.mercadier at imerir.com
>
> $ tail ~/.bashrc
>
> # enable programmable completion features (you don't need to enable
> # this, if it's already enabled in /etc/bash.bashrc and /etc/profile
> # sources /etc/bash.bashrc).
> if [ -f /etc/bash_completion ] && ! shopt -oq posix; then
> ?? ?. /etc/bash_completion
> fi
> export GIT_AUTHOR_NAME="Johann MERCADIER"
> export GIT_COMMITTER_NAME="Johann MERCADIER"
> export GIT_AUTHOR_EMAIL="johann.mercadier at imerir.com"
> _________________________________________________________________________________________
>
> But when I create the patch and try to send it I still have:
>
> Send this email? ([y]es|[n]o|[q]uit|[a]ll): n
> (mbox) Adding cc: JoM <johann.mercadier@imerir.com> from line 'From: JoM
> <johann.mercadier@imerir.com>'
>
> ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? /\
> Where these initials come from___________________________________/
> I don't know where I can modify them and didn't found anything relevant on
> the net... If someone as a clue it could help me finish to add definitively
> this patch.
>
> Thanks.
>
> --
> Cordialement.
>
> ___Johann MERCADIER___
>
> :(){ :|:& };:
> "I am the Unknown lead by the Unknowing.
> I have done so much with so little for so long
> that I am now qualified to do anything with nothing."
> HOOSEEK (http://www.hooseek.com/) 1?moteur de recherche solidaire!
>
>
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 4+ messages in thread
* [Buildroot] GIT :: signing issue
2012-03-27 19:24 [Buildroot] GIT :: signing issue MERCADIER Johann
2012-03-27 20:17 ` Alexandre Pereira da Silva
@ 2012-03-27 22:24 ` Arnout Vandecappelle
2012-03-28 23:03 ` MERCADIER Johann
1 sibling, 1 reply; 4+ messages in thread
From: Arnout Vandecappelle @ 2012-03-27 22:24 UTC (permalink / raw)
To: buildroot
On Tuesday 27 March 2012 21:24:53 MERCADIER Johann wrote:
> my signature do not conform with the licence as my full name should be
> written and not just the initials.
> So I have modified git config as is:
> ___[ SHELL
> ]____________________________________________________________________________
> $ git repo-config --list
> user.name=Johann MERCADIER
> user.email=johann.mercadier at imerir.com
This information is used on a commit, not on a send-email. So you have
to amend your commit(s) first. A simple
git commit --amend -s
should probably do the trick. If you have several commits to amend, use
git rebase -i master
and choose 'edit' for all your commits, then amend each of them as above.
Regards,
Arnout
PS If you would start using quilt or topgit, the above doesn't apply
anymore because these tools store the commit messages differently.
--
Arnout Vandecappelle arnout at mind be
Senior Embedded Software Architect +32-16-286540
Essensium/Mind http://www.mind.be
G.Geenslaan 9, 3001 Leuven, Belgium BE 872 984 063 RPR Leuven
LinkedIn profile: http://www.linkedin.com/in/arnoutvandecappelle
GPG fingerprint: 7CB5 E4CC 6C2E EFD4 6E3D A754 F963 ECAB 2450 2F1F
^ permalink raw reply [flat|nested] 4+ messages in thread
* [Buildroot] GIT :: signing issue
2012-03-27 22:24 ` Arnout Vandecappelle
@ 2012-03-28 23:03 ` MERCADIER Johann
0 siblings, 0 replies; 4+ messages in thread
From: MERCADIER Johann @ 2012-03-28 23:03 UTC (permalink / raw)
To: buildroot
Hi,
thanks Alexandre: I got nothing into this file related to these intials
Arnout: I do apply an "amend" command and did a rebase to
be sure that all others patchs will be correctly signed. After the commit I
had to do I could see that singing took the good value!
Change of the signing value using the real name
Signed-off-by: Johann MERCADIER <johann.mercadier@imerir.com>
So it worked out!
Thanks, I guess that now is everything fine and in conformity with what it
is required.
Hope that my next patch will be a bit less "painfull" at least I have all
the tools to manage it?...
Bye!
On 27 March 2012 23:24, Arnout Vandecappelle <arnout@mind.be> wrote:
> On Tuesday 27 March 2012 21:24:53 MERCADIER Johann wrote:
> > my signature do not conform with the licence as my full name should be
> > written and not just the initials.
> > So I have modified git config as is:
> > ___[ SHELL
> >
> ]____________________________________________________________________________
> > $ git repo-config --list
> > user.name=Johann MERCADIER
> > user.email=johann.mercadier at imerir.com
>
> This information is used on a commit, not on a send-email. So you have
> to amend your commit(s) first. A simple
>
> git commit --amend -s
>
> should probably do the trick. If you have several commits to amend, use
>
> git rebase -i master
>
> and choose 'edit' for all your commits, then amend each of them as above.
>
> Regards,
> Arnout
>
> PS If you would start using quilt or topgit, the above doesn't apply
> anymore because these tools store the commit messages differently.
>
> --
> Arnout Vandecappelle arnout at mind be
> Senior Embedded Software Architect +32-16-286540
> Essensium/Mind http://www.mind.be
> G.Geenslaan 9, 3001 Leuven, Belgium BE 872 984 063 RPR
> Leuven
> LinkedIn profile: http://www.linkedin.com/in/arnoutvandecappelle
> GPG fingerprint: 7CB5 E4CC 6C2E EFD4 6E3D A754 F963 ECAB 2450 2F1F
>
--
Cordialement.
___Johann MERCADIER___
:(){ :|:& };:
"I am the Unknown lead by the Unknowing.
I have done so much with so little for so long
that I am now qualified to do anything with nothing."
HOOSEEK (http://www.hooseek.com/) 1?moteur de recherche solidaire!
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20120329/5de18d9d/attachment.html>
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2012-03-28 23:03 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-03-27 19:24 [Buildroot] GIT :: signing issue MERCADIER Johann
2012-03-27 20:17 ` Alexandre Pereira da Silva
2012-03-27 22:24 ` Arnout Vandecappelle
2012-03-28 23:03 ` MERCADIER Johann
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox