* [TopGit PATCH] tg-create: let format.signoff control adding of Signed-off-by
@ 2011-03-07 10:42 Andrey Borzenkov
0 siblings, 0 replies; only message in thread
From: Andrey Borzenkov @ 2011-03-07 10:42 UTC (permalink / raw)
To: git
GIT manual stresses that adding of Signed-off-by should be explicit
user decision. Some projects do ask for no Signed-off-by lines. So
make sure it is added by tg-create.sh only when explicity requested
by user.
Signed-off-by: Andrey Borzenkov <arvidjaar@gmail.com>
---
tg-create.sh | 8 +++-----
1 files changed, 3 insertions(+), 5 deletions(-)
diff --git a/tg-create.sh b/tg-create.sh
index 2edd537..617031b 100644
--- a/tg-create.sh
+++ b/tg-create.sh
@@ -129,11 +129,9 @@ author_addr="${author%> *}>"
! subject_prefix="$(git config topgit.subjectprefix)" || subject_prefix="$subject_prefix "
echo "Subject: [${subject_prefix}PATCH] $name"
echo
- cat <<EOT
-<patch description>
-
-Signed-off-by: $author_addr
-EOT
+ echo '<patch description>'
+ echo
+ [ "$(git config --bool format.signoff)" = true ] && echo "Signed-off-by: $author_addr"
} >"$root_dir/.topmsg"
git add -f "$root_dir/.topmsg"
--
tg: (d279e29..) u/signed-off-by (depends on: master)
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2011-03-07 10:43 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-03-07 10:42 [TopGit PATCH] tg-create: let format.signoff control adding of Signed-off-by Andrey Borzenkov
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).