Repository: logging-log4net
Updated Branches:
  refs/heads/develop ad4210959 -> aa016ec99


Keys: added comments to the sample script


Project: http://git-wip-us.apache.org/repos/asf/logging-log4net/repo
Commit: http://git-wip-us.apache.org/repos/asf/logging-log4net/commit/aa016ec9
Tree: http://git-wip-us.apache.org/repos/asf/logging-log4net/tree/aa016ec9
Diff: http://git-wip-us.apache.org/repos/asf/logging-log4net/diff/aa016ec9

Branch: refs/heads/develop
Commit: aa016ec999f2c1da696af43917afaf7248dbd361
Parents: ad42109
Author: Dominik Psenner <dpsen...@apache.org>
Authored: Thu Jul 20 18:26:12 2017 +0200
Committer: Dominik Psenner <dpsen...@apache.org>
Committed: Thu Jul 20 18:26:12 2017 +0200

----------------------------------------------------------------------
 KEYS.md | 21 +++++++++++++++++++--
 1 file changed, 19 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/logging-log4net/blob/aa016ec9/KEYS.md
----------------------------------------------------------------------
diff --git a/KEYS.md b/KEYS.md
index 1ac7852..6199b60 100644
--- a/KEYS.md
+++ b/KEYS.md
@@ -8,21 +8,38 @@ This information is for the developers. To add your key 
information use the foll
 
 ````
 #!/bin/bash
+
+# put your name and email address here
 NAME="your name"
 EMAIL="your@email"
 
+# add heading
 cat <<EOT >> KEYS.md
 ## $NAME $EMAIL
 
 ```
-gpg --list-keys $EMAIL
+EOT
+
+# export key information
+gpg --list-keys $EMAIL >> KEYS.md
+
+# add spacer
+cat <<EOT >> KEYS.md
 ```
 
 ```
-gpg --export -a $EMAIL
+EOT
+
+# export key
+gpg --export -a $EMAIL >> KEYS.md
+
+# add ending
+cat <<EOT >> KEYS.md
 ```
 
 EOT
+
+# done
 ````
 
 The original source of this file is 
https://git-wip-us.apache.org/repos/asf?p=logging-log4net.git;a=blob;f=KEYS.md;hb=refs/heads/master

Reply via email to