3 # This is included in commands that either have to be run from the toplevel
4 # of the repository, or with GIT_DIR environment variable properly.
5 # If the GIT_DIR does not look like the right correct git-repository,
8 # Having this variable in your environment would break scripts because
9 # you would cause "cd" to be taken to unexpected places. If you
10 # like CDPATH, define it for your interactive shell sessions without
12 # But we protect ourselves from such a user mistake nevertheless.
15 # Similarly for IFS, but some shells (e.g. FreeBSD 7.2) are buggy and
16 # do not equate an unset IFS with IFS with the default, so here is
17 # an explicit SP HT LF.
21 git_broken_path_fix
() {
32 case "$SANE_TOOL_PATH:$elem" in
33 (?
*:/bin | ?
*:/usr
/bin
)
34 path
="$path$sep$SANE_TOOL_PATH"
50 die_with_status
1 "$@"
63 if test -z "$GIT_QUIET"
71 if test -n "$OPTIONS_SPEC"; then
78 [ -n "$OPTIONS_KEEPDASHDASH" ] &&
79 parseopt_extra
="--keep-dashdash"
82 echo "$OPTIONS_SPEC" |
83 git rev-parse --parseopt $parseopt_extra -- "$@
" ||
87 dashless
=$
(basename "$0" |
sed -e 's/-/ /')
89 die
"usage: $dashless $USAGE"
92 if [ -z "$LONG_USAGE" ]
94 LONG_USAGE
="usage: $dashless $USAGE"
96 LONG_USAGE
="usage: $dashless $USAGE
108 set_reflog_action
() {
109 if [ -z "${GIT_REFLOG_ACTION:+set}" ]
111 GIT_REFLOG_ACTION
="$*"
112 export GIT_REFLOG_ACTION
117 if test -z "${GIT_EDITOR:+set}"
119 GIT_EDITOR
="$(git var GIT_EDITOR)" ||
return $?
122 eval "$GIT_EDITOR" '"$@"'
128 GIT_PAGER
=$
(git var GIT_PAGER
)
135 eval "$GIT_PAGER" '"$@"'
139 GREP_OPTIONS
= LC_ALL
=C
grep "$@"
143 GREP_OPTIONS
= LC_ALL
=C
egrep "$@"
146 is_bare_repository
() {
147 git rev-parse
--is-bare-repository
151 cdup
=$
(git rev-parse
--show-toplevel) &&
153 echo >&2 "Cannot chdir to $cdup, the toplevel of the working tree"
158 require_work_tree_exists
() {
159 if test "z$(git rev-parse --is-bare-repository)" != zfalse
161 die
"fatal: $0 cannot be used without a working tree."
165 require_work_tree
() {
166 test "$(git rev-parse --is-inside-work-tree 2>/dev/null)" = true ||
167 die
"fatal: $0 cannot be used without a working tree."
170 require_clean_work_tree
() {
171 git rev-parse
--verify HEAD
>/dev
/null ||
exit 1
172 git update-index
-q --ignore-submodules --refresh
175 if ! git diff-files
--quiet --ignore-submodules
177 echo >&2 "Cannot $1: You have unstaged changes."
181 if ! git diff-index
--cached --quiet --ignore-submodules HEAD
--
185 echo >&2 "Cannot $1: Your index contains uncommitted changes."
187 echo >&2 "Additionally, your index contains uncommitted changes."
194 test -n "$2" && echo >&2 "$2"
199 # Generate a sed script to parse identities from a commit.
201 # Reads the commit from stdin, which should be in raw format (e.g., from
202 # cat-file or "--pretty=raw").
204 # The first argument specifies the ident line to parse (e.g., "author"), and
205 # the second specifies the environment variable to put it in (e.g., "AUTHOR"
206 # for "GIT_AUTHOR_*"). Multiple pairs can be given to parse author and
208 pick_ident_script
() {
217 s/^$lid "'\([^<]*\) <[^>]*> .*$/\1/'"
218 s/.*/GIT_${uid}_NAME='&'/p
221 s/^$lid "'[^<]* <\([^>]*\)> .*$/\1/'"
222 s/.*/GIT_${uid}_EMAIL='&'/p
225 s/^$lid "'[^<]* <[^>]*> \(.*\)$/@\1/'"
226 s/.*/GIT_${uid}_DATE='&'/p
233 # Create a pick-script as above and feed it to sed. Stdout is suitable for
235 parse_ident_from_commit
() {
236 LANG
=C LC_ALL
=C
sed -ne "$(pick_ident_script "$@
")"
239 # Parse the author from a commit given as an argument. Stdout is suitable for
240 # feeding to eval to set the usual GIT_* ident variables.
241 get_author_ident_from_commit
() {
242 encoding
=$
(git config i18n.commitencoding ||
echo UTF-8
)
243 git show
-s --pretty=raw
--encoding="$encoding" "$1" -- |
244 parse_ident_from_commit author AUTHOR
247 # Clear repo-local GIT_* environment variables. Useful when switching to
248 # another repository (e.g. when entering a submodule). See also the env
249 # list in git_connect()
250 clear_local_git_env
() {
251 unset $
(git rev-parse
--local-env-vars)
254 # Generate a virtual base file for a two-file merge. Uses git apply to
255 # remove lines from $1 that are not in $2, leaving only common lines.
256 create_virtual_base
() {
258 @@DIFF@@
-u -La/"$1" -Lb/"$1" "$1" "$2" | git apply
--no-add
261 # If we do not have enough common material, it is not
262 # worth trying two-file merge using common subsections.
263 expr $sz0 \
< $sz1 \
* 2 >/dev
/null ||
: >"$1"
267 # Platform specific tweaks to work around some commands
270 # Windows has its own (incompatible) sort and find
277 # Let pwd always return the uniqe real windows path
279 is_absolute_path
() {
288 is_absolute_path
() {
297 # Make sure we are in a valid repository of a vintage we understand,
298 # if we require to be in a git repository.
299 if test -z "$NONGIT_OK"
301 GIT_DIR
=$
(git rev-parse
--git-dir) ||
exit
302 if [ -z "$SUBDIRECTORY_OK" ]
304 test -z "$(git rev-parse --show-cdup)" ||
{
306 echo >&2 "You need to run this command from the toplevel of the working tree."
310 test -n "$GIT_DIR" && GIT_DIR
=$
(cd "$GIT_DIR" && pwd) ||
{
311 echo >&2 "Unable to determine absolute path of git directory"
314 : ${GIT_OBJECT_DIRECTORY="$GIT_DIR/objects"}
320 peeltmp
=$
(git rev-parse
--verify "$1") &&
321 git rev-parse
--verify "${peeltmp}^0"
324 git rev-parse
--verify "${1}^0"