From 2390db89c9bcf1f83405098ba9221ae7476187cb Mon Sep 17 00:00:00 2001 From: Michael Prokop Date: Tue, 22 Jun 2010 10:44:34 +0200 Subject: maintainer-notes: use git config instead of environment variables Thanks: Gerfried Fuchs Signed-off-by: Michael Prokop --- docs/maintainer-notes.html | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/docs/maintainer-notes.html b/docs/maintainer-notes.html index 354dece..eeceafd 100644 --- a/docs/maintainer-notes.html +++ b/docs/maintainer-notes.html @@ -80,14 +80,17 @@ or online at -
  • Set environment variables (e.g. through your ~/.bashrc or ~/.zshrc) for git and devscripts (git dch): +
  • Set environment variables (e.g. through your ~/.bashrc or ~/.zshrc) for devscripts (git dch):
     export DEBEMAIL=$mailaddress
    -export DEBFULLNAME=$yourname
    -export GIT_AUTHOR_EMAIL=$mailaddress
    -export GIT_AUTHOR_NAME=$yourname
    -export GIT_COMMITTER_EMAIL=$mailaddress
    -export GIT_COMMITTER_NAME=$yourname
    +export DEBFULLNAME=$yourname
    +
    +
  • + +
  • Set user name and email address for git (drop the --global option to use configuration per-repo basis): +
    +% git config --global user.name  "$yourname"
    +% git config --global user.email "$mailaddress"
     
  • -- cgit v1.2.3