2005-07-08 19:57:21 +02:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
2005-11-24 09:12:11 +01:00
|
|
|
# This is included in commands that either have to be run from the toplevel
|
|
|
|
# of the repository, or with GIT_DIR environment variable properly.
|
|
|
|
# If the GIT_DIR does not look like the right correct git-repository,
|
|
|
|
# it dies.
|
2005-07-08 19:57:21 +02:00
|
|
|
|
2005-09-13 04:47:07 +02:00
|
|
|
# Having this variable in your environment would break scripts because
|
2007-09-16 01:32:23 +02:00
|
|
|
# you would cause "cd" to be taken to unexpected places. If you
|
2005-09-13 04:47:07 +02:00
|
|
|
# like CDPATH, define it for your interactive shell sessions without
|
|
|
|
# exporting it.
|
|
|
|
unset CDPATH
|
|
|
|
|
2009-06-08 18:41:49 +02:00
|
|
|
git_broken_path_fix () {
|
|
|
|
case ":$PATH:" in
|
|
|
|
*:$1:*) : ok ;;
|
|
|
|
*)
|
|
|
|
PATH=$(
|
|
|
|
SANE_TOOL_PATH="$1"
|
|
|
|
IFS=: path= sep=
|
|
|
|
set x $PATH
|
|
|
|
shift
|
|
|
|
for elem
|
|
|
|
do
|
|
|
|
case "$SANE_TOOL_PATH:$elem" in
|
|
|
|
(?*:/bin | ?*:/usr/bin)
|
|
|
|
path="$path$sep$SANE_TOOL_PATH"
|
|
|
|
sep=:
|
|
|
|
SANE_TOOL_PATH=
|
|
|
|
esac
|
|
|
|
path="$path$sep$elem"
|
|
|
|
sep=:
|
|
|
|
done
|
|
|
|
echo "$path"
|
|
|
|
)
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
}
|
|
|
|
|
|
|
|
# @@BROKEN_PATH_FIX@@
|
2009-06-06 01:36:15 +02:00
|
|
|
|
2005-07-08 19:57:21 +02:00
|
|
|
die() {
|
2005-09-30 23:26:57 +02:00
|
|
|
echo >&2 "$@"
|
2005-07-08 19:57:21 +02:00
|
|
|
exit 1
|
|
|
|
}
|
|
|
|
|
2009-06-17 00:32:59 +02:00
|
|
|
GIT_QUIET=
|
|
|
|
|
|
|
|
say () {
|
|
|
|
if test -z "$GIT_QUIET"
|
|
|
|
then
|
|
|
|
printf '%s\n' "$*"
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2007-11-04 11:30:54 +01:00
|
|
|
if test -n "$OPTIONS_SPEC"; then
|
|
|
|
usage() {
|
2007-12-20 21:58:06 +01:00
|
|
|
"$0" -h
|
|
|
|
exit 1
|
2007-11-04 11:30:54 +01:00
|
|
|
}
|
|
|
|
|
2007-11-08 10:32:11 +01:00
|
|
|
parseopt_extra=
|
|
|
|
[ -n "$OPTIONS_KEEPDASHDASH" ] &&
|
|
|
|
parseopt_extra="--keep-dashdash"
|
|
|
|
|
|
|
|
eval "$(
|
2007-11-08 08:04:38 +01:00
|
|
|
echo "$OPTIONS_SPEC" |
|
2007-11-08 10:32:11 +01:00
|
|
|
git rev-parse --parseopt $parseopt_extra -- "$@" ||
|
|
|
|
echo exit $?
|
|
|
|
)"
|
2007-11-04 11:30:54 +01:00
|
|
|
else
|
2008-07-13 15:36:15 +02:00
|
|
|
dashless=$(basename "$0" | sed -e 's/-/ /')
|
2007-11-04 11:30:54 +01:00
|
|
|
usage() {
|
2008-07-13 15:36:15 +02:00
|
|
|
die "Usage: $dashless $USAGE"
|
2007-11-04 11:30:54 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if [ -z "$LONG_USAGE" ]
|
|
|
|
then
|
2008-07-13 15:36:15 +02:00
|
|
|
LONG_USAGE="Usage: $dashless $USAGE"
|
2007-11-04 11:30:54 +01:00
|
|
|
else
|
2008-07-13 15:36:15 +02:00
|
|
|
LONG_USAGE="Usage: $dashless $USAGE
|
2007-11-04 11:30:54 +01:00
|
|
|
|
|
|
|
$LONG_USAGE"
|
|
|
|
fi
|
|
|
|
|
|
|
|
case "$1" in
|
|
|
|
-h|--h|--he|--hel|--help)
|
|
|
|
echo "$LONG_USAGE"
|
|
|
|
exit
|
|
|
|
esac
|
|
|
|
fi
|
2005-12-11 10:55:49 +01:00
|
|
|
|
2006-12-28 08:34:48 +01:00
|
|
|
set_reflog_action() {
|
|
|
|
if [ -z "${GIT_REFLOG_ACTION:+set}" ]
|
|
|
|
then
|
|
|
|
GIT_REFLOG_ACTION="$*"
|
|
|
|
export GIT_REFLOG_ACTION
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2007-07-20 07:09:35 +02:00
|
|
|
git_editor() {
|
git-sh-setup.sh: make GIT_EDITOR/core.editor/VISUAL/EDITOR accept commands
The previous code only allowed specifying a single executable rather
than a complete command like "emacsclient --alternate-editor vi" in
those variables. Since VISUAL/EDITOR appear to be traditionally
passed to a shell for interpretation (as corroborated with "less",
"mail" and "mailx", while the really ancient "more" indeed allows only
an executable name), the shell function git_editor has been amended
appropriately.
"eval" is employed to have quotes and similar interpreted _after_
expansion, so that specifying
EDITOR='"/home/dak/My Commands/notepad.exe"'
can be used for actually using commands with blanks.
Instead of passing just the first argument of git_editor on, we pass
all of them (so that +lineno might be employed at a later point of
time, or so that multiple files may be edited when appropriate).
Strictly speaking, there is a change in behavior: when
git config core.editor
returns a valid but empty string, the fallbacks are still searched.
This is more consistent, and the old code was problematic with regard
to multiple blanks. Putting in additional quotes might have worked,
but quotes inside of command substitution inside of quotes is nasty
enough to not reliably work the same across "Bourne shells".
Signed-off-by: David Kastrup <dak@gnu.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2007-08-01 23:47:20 +02:00
|
|
|
: "${GIT_EDITOR:=$(git config core.editor)}"
|
|
|
|
: "${GIT_EDITOR:=${VISUAL:-${EDITOR}}}"
|
2007-07-20 07:09:35 +02:00
|
|
|
case "$GIT_EDITOR,$TERM" in
|
|
|
|
,dumb)
|
|
|
|
echo >&2 "No editor specified in GIT_EDITOR, core.editor, VISUAL,"
|
|
|
|
echo >&2 "or EDITOR. Tried to fall back to vi but terminal is dumb."
|
|
|
|
echo >&2 "Please set one of these variables to an appropriate"
|
|
|
|
echo >&2 "editor or run $0 with options that will not cause an"
|
|
|
|
echo >&2 "editor to be invoked (e.g., -m or -F for git-commit)."
|
|
|
|
exit 1
|
|
|
|
;;
|
|
|
|
esac
|
git-sh-setup.sh: make GIT_EDITOR/core.editor/VISUAL/EDITOR accept commands
The previous code only allowed specifying a single executable rather
than a complete command like "emacsclient --alternate-editor vi" in
those variables. Since VISUAL/EDITOR appear to be traditionally
passed to a shell for interpretation (as corroborated with "less",
"mail" and "mailx", while the really ancient "more" indeed allows only
an executable name), the shell function git_editor has been amended
appropriately.
"eval" is employed to have quotes and similar interpreted _after_
expansion, so that specifying
EDITOR='"/home/dak/My Commands/notepad.exe"'
can be used for actually using commands with blanks.
Instead of passing just the first argument of git_editor on, we pass
all of them (so that +lineno might be employed at a later point of
time, or so that multiple files may be edited when appropriate).
Strictly speaking, there is a change in behavior: when
git config core.editor
returns a valid but empty string, the fallbacks are still searched.
This is more consistent, and the old code was problematic with regard
to multiple blanks. Putting in additional quotes might have worked,
but quotes inside of command substitution inside of quotes is nasty
enough to not reliably work the same across "Bourne shells".
Signed-off-by: David Kastrup <dak@gnu.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2007-08-01 23:47:20 +02:00
|
|
|
eval "${GIT_EDITOR:=vi}" '"$@"'
|
2007-07-20 07:09:35 +02:00
|
|
|
}
|
|
|
|
|
2007-01-07 11:17:52 +01:00
|
|
|
is_bare_repository () {
|
2007-07-03 07:52:14 +02:00
|
|
|
git rev-parse --is-bare-repository
|
2007-01-07 11:17:52 +01:00
|
|
|
}
|
|
|
|
|
2007-01-12 21:44:08 +01:00
|
|
|
cd_to_toplevel () {
|
2007-07-03 07:52:14 +02:00
|
|
|
cdup=$(git rev-parse --show-cdup)
|
2007-01-12 21:44:08 +01:00
|
|
|
if test ! -z "$cdup"
|
|
|
|
then
|
2009-02-07 04:24:28 +01:00
|
|
|
# The "-P" option says to follow "physical" directory
|
|
|
|
# structure instead of following symbolic links. When cdup is
|
|
|
|
# "../", this means following the ".." entry in the current
|
|
|
|
# directory instead textually removing a symlink path element
|
|
|
|
# from the PWD shell variable. The "-P" behavior is more
|
|
|
|
# consistent with the C-style chdir used by most of Git.
|
|
|
|
cd -P "$cdup" || {
|
|
|
|
echo >&2 "Cannot chdir to $cdup, the toplevel of the working tree"
|
2007-01-12 21:44:08 +01:00
|
|
|
exit 1
|
|
|
|
}
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2006-12-31 05:32:38 +01:00
|
|
|
require_work_tree () {
|
Clean up work-tree handling
The old version of work-tree support was an unholy mess, barely readable,
and not to the point.
For example, why do you have to provide a worktree, when it is not used?
As in "git status". Now it works.
Another riddle was: if you can have work trees inside the git dir, why
are some programs complaining that they need a work tree?
IOW it is allowed to call
$ git --git-dir=../ --work-tree=. bla
when you really want to. In this case, you are both in the git directory
and in the working tree. So, programs have to actually test for the right
thing, namely if they are inside a working tree, and not if they are
inside a git directory.
Also, GIT_DIR=../.git should behave the same as if no GIT_DIR was
specified, unless there is a repository in the current working directory.
It does now.
The logic to determine if a repository is bare, or has a work tree
(tertium non datur), is this:
--work-tree=bla overrides GIT_WORK_TREE, which overrides core.bare = true,
which overrides core.worktree, which overrides GIT_DIR/.. when GIT_DIR
ends in /.git, which overrides the directory in which .git/ was found.
In related news, a long standing bug was fixed: when in .git/bla/x.git/,
which is a bare repository, git formerly assumed ../.. to be the
appropriate git dir. This problem was reported by Shawn Pearce to have
caused much pain, where a colleague mistakenly ran "git init" in "/" a
long time ago, and bare repositories just would not work.
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2007-08-01 02:30:14 +02:00
|
|
|
test $(git rev-parse --is-inside-work-tree) = true ||
|
2006-12-31 05:32:38 +01:00
|
|
|
die "fatal: $0 cannot be used without a working tree."
|
|
|
|
}
|
|
|
|
|
2007-06-25 02:04:11 +02:00
|
|
|
get_author_ident_from_commit () {
|
|
|
|
pick_author_script='
|
|
|
|
/^author /{
|
|
|
|
s/'\''/'\''\\'\'\''/g
|
|
|
|
h
|
|
|
|
s/^author \([^<]*\) <[^>]*> .*$/\1/
|
|
|
|
s/'\''/'\''\'\'\''/g
|
|
|
|
s/.*/GIT_AUTHOR_NAME='\''&'\''/p
|
|
|
|
|
|
|
|
g
|
|
|
|
s/^author [^<]* <\([^>]*\)> .*$/\1/
|
|
|
|
s/'\''/'\''\'\'\''/g
|
|
|
|
s/.*/GIT_AUTHOR_EMAIL='\''&'\''/p
|
|
|
|
|
|
|
|
g
|
|
|
|
s/^author [^<]* <[^>]*> \(.*\)$/\1/
|
|
|
|
s/'\''/'\''\'\'\''/g
|
|
|
|
s/.*/GIT_AUTHOR_DATE='\''&'\''/p
|
|
|
|
|
|
|
|
q
|
|
|
|
}
|
|
|
|
'
|
|
|
|
encoding=$(git config i18n.commitencoding || echo UTF-8)
|
2008-02-13 22:13:21 +01:00
|
|
|
git show -s --pretty=raw --encoding="$encoding" "$1" -- |
|
2007-06-25 02:04:11 +02:00
|
|
|
LANG=C LC_ALL=C sed -ne "$pick_author_script"
|
|
|
|
}
|
|
|
|
|
2007-12-13 02:34:30 +01:00
|
|
|
# Make sure we are in a valid repository of a vintage we understand,
|
|
|
|
# if we require to be in a git repository.
|
2007-12-15 05:57:28 +01:00
|
|
|
if test -z "$NONGIT_OK"
|
2005-12-11 10:55:49 +01:00
|
|
|
then
|
2008-02-18 11:44:19 +01:00
|
|
|
GIT_DIR=$(git rev-parse --git-dir) || exit
|
2007-12-13 02:34:30 +01:00
|
|
|
if [ -z "$SUBDIRECTORY_OK" ]
|
|
|
|
then
|
|
|
|
test -z "$(git rev-parse --show-cdup)" || {
|
|
|
|
exit=$?
|
|
|
|
echo >&2 "You need to run this command from the toplevel of the working tree."
|
|
|
|
exit $exit
|
|
|
|
}
|
|
|
|
fi
|
|
|
|
test -n "$GIT_DIR" && GIT_DIR=$(cd "$GIT_DIR" && pwd) || {
|
|
|
|
echo >&2 "Unable to determine absolute path of git directory"
|
|
|
|
exit 1
|
2007-08-11 15:36:28 +02:00
|
|
|
}
|
2007-12-13 02:34:30 +01:00
|
|
|
: ${GIT_OBJECT_DIRECTORY="$GIT_DIR/objects"}
|
2005-12-11 10:55:49 +01:00
|
|
|
fi
|
2007-11-30 22:06:30 +01:00
|
|
|
|
|
|
|
# Fix some commands on Windows
|
|
|
|
case $(uname -s) in
|
|
|
|
*MINGW*)
|
|
|
|
# Windows has its own (incompatible) sort and find
|
|
|
|
sort () {
|
|
|
|
/usr/bin/sort "$@"
|
|
|
|
}
|
|
|
|
find () {
|
|
|
|
/usr/bin/find "$@"
|
|
|
|
}
|
|
|
|
;;
|
|
|
|
esac
|