Skip to content

Commit

Permalink
Avoid using "git-var -l" until it gets fixed.
Browse files Browse the repository at this point in the history
This is to be nicer to people with unusable GECOS field.

"git-var -l" is currently broken in that when used by a user who
does not have a usable GECOS field and has not corrected it by
exporting GIT_COMMITTER_NAME environment variable it dies when
it tries to output GIT_COMMITTER_IDENT (same thing for AUTHOR).

"git-pull" used "git-var -l" only because it needed to get a
configuration variable before "git-repo-config --get" was
introduced.  Use the latter tool designed exactly for this
purpose.

"git-sh-setup" used "git-var GIT_AUTHOR_IDENT" without actually
wanting to use its value.  The only purpose was to cause the
command to check and barf if the repository format version
recorded in the $GIT_DIR/config file is too new for us to deal
with correctly.  Instead, use "repo-config --get" on a random
property and see if it die()s, and check if the exit status is
128 (comes from die -- missing variable is reported with exit
status 1, so we can tell that case apart).

Signed-off-by: Junio C Hamano <junkio@cox.net>
  • Loading branch information
Junio C Hamano committed Feb 12, 2006
1 parent 16139f9 commit 4890f62
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
8 changes: 4 additions & 4 deletions git-pull.sh
Original file line number Diff line number Diff line change
Expand Up @@ -70,21 +70,21 @@ case "$merge_head" in
exit 0
;;
?*' '?*)
var=`git-var -l | sed -ne 's/^pull\.octopus=/-s /p'`
var=`git repo-config --get pull.octopus`
if test '' = "$var"
then
strategy_default_args='-s octopus'
else
strategy_default_args=$var
strategy_default_args="-s $var"
fi
;;
*)
var=`git-var -l | sed -ne 's/^pull\.twohead=/-s /p'`
var=`git repo-config --get pull.twohead`
if test '' = "$var"
then
strategy_default_args='-s recursive'
else
strategy_default_args=$var
strategy_default_args="-s $var"
fi
;;
esac
Expand Down
6 changes: 5 additions & 1 deletion git-sh-setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,11 @@ then
: ${GIT_OBJECT_DIRECTORY="$GIT_DIR/objects"}

# Make sure we are in a valid repository of a vintage we understand.
GIT_DIR="$GIT_DIR" git-var GIT_AUTHOR_IDENT >/dev/null || exit
GIT_DIR="$GIT_DIR" git repo-config --get core.nosuch >/dev/null
if test $? == 128
then
exit
fi
else
GIT_DIR=$(git-rev-parse --git-dir) || exit
fi

0 comments on commit 4890f62

Please sign in to comment.