git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [StGit PATCH] Autosign newly created patches
@ 2008-09-12 21:55 Catalin Marinas
  2008-09-14  8:37 ` Karl Hasselström
  0 siblings, 1 reply; 4+ messages in thread
From: Catalin Marinas @ 2008-09-12 21:55 UTC (permalink / raw)
  To: git; +Cc: Karl Hasselström

This patch adds the autosign configuration variable which is checked by
the "new" command to automatically sign the patch message.

Signed-off-by: Catalin Marinas <catalin.marinas@gmail.com>
---

BTW, what happened to the patchdescr.tmpl file? It doesn't seem to be
used anymore, however one can save a template file

 examples/gitconfig    |    3 +++
 stgit/commands/new.py |    8 +++++++-
 2 files changed, 10 insertions(+), 1 deletions(-)

diff --git a/examples/gitconfig b/examples/gitconfig
index 4a36202..9efc089 100644
--- a/examples/gitconfig
+++ b/examples/gitconfig
@@ -14,6 +14,9 @@
 	# Automatically Bcc the address below
 	#autobcc = your.name@yourcompany.com
 
+	# Automatically sign newly created patches
+	#autosign = Signed-off-by
+
 	# Set to 'yes' if you don't want to use the 'resolved' command.
 	# 'refresh' will automatically mark the conflicts as resolved
 	#autoresolved = no
diff --git a/stgit/commands/new.py b/stgit/commands/new.py
index eb45e1b..4a58d52 100644
--- a/stgit/commands/new.py
+++ b/stgit/commands/new.py
@@ -21,6 +21,7 @@ from optparse import make_option
 from stgit import argparse, utils
 from stgit.commands import common
 from stgit.lib import git as gitlib, transaction
+from stgit.config import config
 
 help = 'create a new patch and make it the topmost one'
 usage = """%prog [options] [name]
@@ -72,8 +73,13 @@ def func(parser, options, args):
 
     # Add Signed-off-by: or similar.
     if options.sign_str != None:
+        sign_str = options.sign_str
+    else:
+        sign_str = config.get("stgit.autosign")
+
+    if sign_str != None:
         cd = cd.set_message(
-            utils.add_sign_line(cd.message, options.sign_str,
+            utils.add_sign_line(cd.message, sign_str,
                                 cd.committer.name, cd.committer.email))
 
     if options.save_template:

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [StGit PATCH] Autosign newly created patches
  2008-09-12 21:55 [StGit PATCH] Autosign newly created patches Catalin Marinas
@ 2008-09-14  8:37 ` Karl Hasselström
  2008-09-14 21:05   ` Catalin Marinas
  0 siblings, 1 reply; 4+ messages in thread
From: Karl Hasselström @ 2008-09-14  8:37 UTC (permalink / raw)
  To: Catalin Marinas; +Cc: git

On 2008-09-12 22:55:56 +0100, Catalin Marinas wrote:

> This patch adds the autosign configuration variable which is checked
> by the "new" command to automatically sign the patch message.

Sounds useful. I have a sign-off command in my .emacs, but I expect
this would be useful for those who don't.

> BTW, what happened to the patchdescr.tmpl file? It doesn't seem to
> be used anymore, however one can save a template file

I don't know. I don't use it myself, so it's perfectly possible that
I've broken it without noticing, seeing as there is no test suite
coverage ...

-- 
Karl Hasselström, kha@treskal.com
      www.treskal.com/kalle

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [StGit PATCH] Autosign newly created patches
  2008-09-14  8:37 ` Karl Hasselström
@ 2008-09-14 21:05   ` Catalin Marinas
  2008-09-15  7:43     ` Karl Hasselström
  0 siblings, 1 reply; 4+ messages in thread
From: Catalin Marinas @ 2008-09-14 21:05 UTC (permalink / raw)
  To: Karl Hasselström; +Cc: git

2008/9/14 Karl Hasselström <kha@treskal.com>:
> On 2008-09-12 22:55:56 +0100, Catalin Marinas wrote:
>
>> This patch adds the autosign configuration variable which is checked
>> by the "new" command to automatically sign the patch message.
>
> Sounds useful. I have a sign-off command in my .emacs, but I expect
> this would be useful for those who don't.

I use emacs for writing code but not that much for stgit commands (I
prefer the shell).

>> BTW, what happened to the patchdescr.tmpl file? It doesn't seem to
>> be used anymore, however one can save a template file
>
> I don't know. I don't use it myself, so it's perfectly possible that
> I've broken it without noticing, seeing as there is no test suite
> coverage ...

There isn't a test but the command description suggests that
patchdesr.tmpl file will be used if present.

Should we keep this feature? The only case where I was using it was
for automatic signed-off-by line.

-- 
Catalin

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [StGit PATCH] Autosign newly created patches
  2008-09-14 21:05   ` Catalin Marinas
@ 2008-09-15  7:43     ` Karl Hasselström
  0 siblings, 0 replies; 4+ messages in thread
From: Karl Hasselström @ 2008-09-15  7:43 UTC (permalink / raw)
  To: Catalin Marinas; +Cc: git

On 2008-09-14 22:05:04 +0100, Catalin Marinas wrote:

> There isn't a test but the command description suggests that
> patchdesr.tmpl file will be used if present.
>
> Should we keep this feature? The only case where I was using it was
> for automatic signed-off-by line.

I don't really have an opinion, as I don't use it.

-- 
Karl Hasselström, kha@treskal.com
      www.treskal.com/kalle

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2008-09-15  7:22 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-09-12 21:55 [StGit PATCH] Autosign newly created patches Catalin Marinas
2008-09-14  8:37 ` Karl Hasselström
2008-09-14 21:05   ` Catalin Marinas
2008-09-15  7:43     ` Karl Hasselström

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).