From: Steven Cole <elenstev@mesatop.com>
To: "Sean" <seanlkml@sympatico.ca>
Cc: "Junio C Hamano" <junkio@cox.net>,
"Marcel Holtmann" <marcel@holtmann.org>,
"Petr Baudis" <pasky@ucw.cz>,
git@vger.kernel.org
Subject: Re: [PATCH] Add cg-printenv command.
Date: Sun, 8 May 2005 21:59:59 -0600 [thread overview]
Message-ID: <200505082159.59595.elenstev@mesatop.com> (raw)
In-Reply-To: <2970.10.10.10.24.1115610025.squirrel@linux1>
On Sunday 08 May 2005 09:40 pm, Sean wrote:
> On Sun, May 8, 2005 11:25 pm, Steven Cole said:
>
> > I had intended it only as a quick check by an end-user before doing
> > a commit that the values had been set as desired.
>
> Hey Steven,
>
> Rather than creating a separate command, perhaps the values could
> automatically be added to the initial commit message in a few "CG:" lines?
>
> Sean
A secondary reason for adding the cg-printenv capability was that a user would
see this command in the cg-help list, and cg-help printenv would give:
Print exported git environment variables
Copyright (c) Steven Cole 2005 <--- Petr, my early version of cg-help stripped (c) lines.
These git environment variables are used in case
values other than that returned by getpwuid(getuid())
are desired when performing a commit.
AUTHOR_NAME Author's name
AUTHOR_EMAIL Author's e-mail address
AUTHOR_DATE Date, perhaps from a patch e-mail
COMMIT_AUTHOR_NAME Committer's name
COMMIT_AUTHOR_EMAIL Committer's e-mail address
Takes no parameters.
-------------
Yes, I know that the environment variables are documented in Documentation/core-git.txt,
but having this usage right up front like this may help those who only RTFM as a last resort.
If others feel that the more obscure environment variables should be exposed here, feel
free to submit patches.
Here is a patch with Junio's improved version:
--------------------------------------------------------------------------------------
The cg-printenv command will print exported git environment variables.
Signed-off-by: Steven Cole <elenstev@mesatop.com>
Index: Makefile
===================================================================
--- 3974261da777f55a7a11aff6e02f584bbfe2b475/Makefile (mode:100644)
+++ uncommitted/Makefile (mode:100644)
@@ -48,7 +48,8 @@
SCRIPT= commit-id tree-id parent-id cg-add cg-admin-lsobj cg-admin-uncommit \
cg-branch-add cg-branch-ls cg-cancel cg-clone cg-commit cg-diff \
cg-export cg-help cg-init cg-log cg-ls cg-merge cg-mkpatch cg-patch \
- cg-pull cg-restore cg-rm cg-seek cg-status cg-tag cg-tag-ls cg-update
+ cg-printenv cg-pull cg-restore cg-rm cg-seek cg-status cg-tag cg-tag-ls \
+ cg-update
LIB_SCRIPT=cg-Xlib cg-Xdiffdo cg-Xmergefile
Index: cg-help
===================================================================
--- 3974261da777f55a7a11aff6e02f584bbfe2b475/cg-help (mode:100755)
+++ uncommitted/cg-help (mode:100755)
@@ -35,6 +35,7 @@
cg-merge [-c] [-b BASE_ID] FROM_ID
cg-mkpatch [-s] [-r FROM_ID[:TO_ID]]
cg-patch < patch on stdin
+ cg-printenv
cg-pull [BNAME]
cg-restore [FILE]...
cg-rm FILE...
Index: cg-printenv
===================================================================
--- /dev/null (tree:3974261da777f55a7a11aff6e02f584bbfe2b475)
+++ uncommitted/cg-printenv (mode:100755)
@@ -0,0 +1,21 @@
+#!/usr/bin/env bash
+#
+# Print exported git environment variables
+# Copyright (c) Steven Cole 2005
+#
+#These git environment variables are used in case
+#values other than that returned by getpwuid(getuid())
+#are desired when performing a commit.
+#
+#AUTHOR_NAME Author's name
+#AUTHOR_EMAIL Author's e-mail address
+#AUTHOR_DATE Date, perhaps from a patch e-mail
+#COMMIT_AUTHOR_NAME Committer's name
+#COMMIT_AUTHOR_EMAIL Committer's e-mail address
+#
+# Takes no parameters.
+echo AUTHOR_NAME="$AUTHOR_NAME"
+echo AUTHOR_EMAIL="$AUTHOR_EMAIL"
+echo AUTHOR_DATE="$AUTHOR_DATE"
+echo COMMIT_AUTHOR_NAME="$COMMIT_AUTHOR_NAME"
+echo COMMIT_AUTHOR_EMAIL="$COMMIT_AUTHOR_EMAIL"
next prev parent reply other threads:[~2005-05-09 3:58 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2005-05-09 1:11 [PATCH] Add cg-printenv command Steven Cole
2005-05-09 1:19 ` Marcel Holtmann
2005-05-09 2:38 ` Junio C Hamano
2005-05-09 3:25 ` Steven Cole
2005-05-09 3:40 ` Sean
2005-05-09 3:59 ` Steven Cole [this message]
2005-05-09 7:24 ` Petr Baudis
2005-05-09 13:35 ` Steven Cole
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=200505082159.59595.elenstev@mesatop.com \
--to=elenstev@mesatop.com \
--cc=git@vger.kernel.org \
--cc=junkio@cox.net \
--cc=marcel@holtmann.org \
--cc=pasky@ucw.cz \
--cc=seanlkml@sympatico.ca \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox