Re: [GSoC][PATCH] commit: add a commit.signOff config variable

2018-02-05 Thread Chen Jingpiao
On 02/05 01:50, Stefan Beller wrote: > On Sat, Feb 3, 2018 at 6:03 PM, Chen Jingpiao wrote: > > Add the commit.signOff configuration variable to use the -s or --signoff > > option of git commit by default. > > > > Signed-off-by: Chen Jingpiao > >

Re: [GSoC][PATCH] commit: add a commit.signOff config variable

2018-02-05 Thread Stefan Beller
On Sat, Feb 3, 2018 at 6:03 PM, Chen Jingpiao wrote: > Add the commit.signOff configuration variable to use the -s or --signoff > option of git commit by default. > > Signed-off-by: Chen Jingpiao > --- Welcome to the Git community! > > Though we

Re: [GSoC][PATCH] commit: add a commit.signOff config variable

2018-02-04 Thread Ævar Arnfjörð Bjarmason
On Sun, Feb 04 2018, Eric Sunshine jotted: > --- >8 --- > for cfg in true false > do > for opt in '' --signoff --no-signoff > do > case "$opt:$cfg" in > --signoff:*|:true) expect= ;; > --no-signoff:*|:false) expect=! ;; > esac > test_expect_success

Re: [GSoC][PATCH] commit: add a commit.signOff config variable

2018-02-04 Thread Eric Sunshine
On Sun, Feb 04, 2018 at 10:03:18AM +0800, Chen Jingpiao wrote: > Add the commit.signOff configuration variable to use the -s or --signoff > option of git commit by default. > > Signed-off-by: Chen Jingpiao > --- > > Though we can configure signoff using format.signOff