summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 205df27)
raw | patch | inline | side by side (parent: 205df27)
author | Eric W. Biederman <ebiederm@xmission.com> | |
Wed, 25 Jan 2006 20:03:41 +0000 (13:03 -0700) | ||
committer | Junio C Hamano <junkio@cox.net> | |
Wed, 25 Jan 2006 23:10:35 +0000 (15:10 -0800) |
In the last round of bug fixes the signed-off-by line was still be
generated but it was not including a signed-off-by line :(
Signed-off-by: Eric W. Biederman <ebiederm@xmission.com>
Signed-off-by: Junio C Hamano <junkio@cox.net>
generated but it was not including a signed-off-by line :(
Signed-off-by: Eric W. Biederman <ebiederm@xmission.com>
Signed-off-by: Junio C Hamano <junkio@cox.net>
git-format-patch.sh | patch | blob | history |
diff --git a/git-format-patch.sh b/git-format-patch.sh
index 7e67c4e403f48be282e934586faa93a36e5f1ad8..5fb8ce1fbc6e067cdd3c3723b8524df72225632e 100755 (executable)
--- a/git-format-patch.sh
+++ b/git-format-patch.sh
$last_was_signoff);
if ($signoff) {
- $signoff = `git-var GIT_COMMITTER_IDENT`;
+ $signoff = "Signed-off-by: " . `git-var GIT_COMMITTER_IDENT`;
$signoff =~ s/>.*/>/;
$signoff_pattern = quotemeta($signoff);
}