Skip to content

Instantly share code, notes, and snippets.

@EliahKagan
Last active June 12, 2024 17:12
Show Gist options
  • Save EliahKagan/d1ffae77db62103933adf1fb9f23c0da to your computer and use it in GitHub Desktop.
Save EliahKagan/d1ffae77db62103933adf1fb9f23c0da to your computer and use it in GitHub Desktop.
testing git behavior related to gitoxide Ubuntu 22.04 runs with GIX_TEST_IGNORE_ARCHIVES=1 (experiment D)

gitoxide-jammy-ignore-archives-d

This is experiment D, examining the environments of the chain of processes created to clone submodules with different versions of git, to investigate the treatment of GIT_CONFIG_COUNT-related configuration in nested submodule clones.

Experiment B and experiment C are also of interest. In contrast, this experiment examines the environment in detail, and also does not make use of gitoxide tests or fixture scripts, though the motivating goal is still to improve the compatibility of gitoxide's test suite with different git versions (which are used in fixtures to produce repositories for testing gitoxide, and occasionally to compare git and gitoxide behavior).

License for this gist: CC0-1.0

Files

Script used in "long" tests

Long tests - inspect multiple ancestor processes

Short tests - inspect ancestor process of most interest

Bisection using short test procedure

#!/usr/bin/env bash
set -euo pipefail
ancestors=()
# Populate ancestors, ordering highest to lowest.
pid="$$"
while ((pid != 1)); do
pid="$(ps -o ppid:1= -p "$pid")"
test -r "/proc/$pid/environ" || break
ancestors=("$pid" "${ancestors[@]}")
done
# Print information about each ancestor.
for pid in "${ancestors[@]}"; do
ps -o pid:1=,cmd= -p "$pid"
awk -v RS='\0' '/^GIT_/ { print " " $0 }' "/proc/$pid/environ"
done
printf '\n'
ek@apok:~/tmp$ git version
git version 2.34.1
ek@apok:~/tmp$ type git
git is hashed (/usr/bin/git)
ek@apok:~/tmp$ dpkg -S /usr/bin/git
git: /usr/bin/git
ek@apok:~/tmp$ apt list git
Listing... Done
git/jammy-updates,jammy-security,now 1:2.34.1-1ubuntu1.11 amd64 [installed,automatic]
N: There is 1 additional version. Please use the '-a' switch to see it
ek@apok:~/tmp$ GIT_SSH_COMMAND='pswalk 1>&2; ssh' GIT_CONFIG_COUNT=1 GIT_CONFIG_KEY_0=foo.bar GIT_CONFIG_VALUE_0=baz git clone --recurse-submodules git@github.com:EliahKagan/has-nested-submodule.git
Cloning into 'has-nested-submodule'...
6731 -bash
820166 git clone --recurse-submodules git@github.com:EliahKagan/has-nested-submodule.git
GIT_CONFIG_COUNT=1
GIT_CONFIG_KEY_0=foo.bar
GIT_SSH_COMMAND=pswalk 1>&2; ssh
GIT_CONFIG_VALUE_0=baz
820491 /bin/sh -c pswalk 1>&2; ssh "$@" pswalk 1>&2; ssh -o SendEnv=GIT_PROTOCOL git@github.com git-upload-pack 'EliahKa
GIT_CONFIG_KEY_0=foo.bar
GIT_CONFIG_VALUE_0=baz
GIT_EXEC_PATH=/usr/lib/git-core
GIT_PROTOCOL=version=2
GIT_SSH_COMMAND=pswalk 1>&2; ssh
remote: Enumerating objects: 4, done.
remote: Counting objects: 100% (4/4), done.
remote: Compressing objects: 100% (4/4), done.
remote: Total 4 (delta 0), reused 4 (delta 0), pack-reused 0
Receiving objects: 100% (4/4), done.
Submodule 'has-submodule' (git@github.com:EliahKagan/has-submodule.git) registered for path 'has-submodule'
Cloning into '/home/ek/tmp/has-nested-submodule/has-submodule'...
6731 -bash
820166 git clone --recurse-submodules git@github.com:EliahKagan/has-nested-submodule.git
GIT_CONFIG_COUNT=1
GIT_CONFIG_KEY_0=foo.bar
GIT_SSH_COMMAND=pswalk 1>&2; ssh
GIT_CONFIG_VALUE_0=baz
822142 /usr/lib/git-core/git submodule update --require-init --recursive --progress --no-single-branch
GIT_CONFIG_COUNT=1
GIT_CONFIG_KEY_0=foo.bar
GIT_CONFIG_VALUE_0=baz
GIT_DIR=/home/ek/tmp/has-nested-submodule/.git
GIT_EXEC_PATH=/usr/lib/git-core
GIT_SSH_COMMAND=pswalk 1>&2; ssh
822153 /bin/sh /usr/lib/git-core/git-submodule update --require-init --recursive --progress --no-single-branch
GIT_CONFIG_COUNT=1
GIT_CONFIG_KEY_0=foo.bar
GIT_CONFIG_VALUE_0=baz
GIT_DIR=/home/ek/tmp/has-nested-submodule/.git
GIT_EXEC_PATH=/usr/lib/git-core
GIT_SSH_COMMAND=pswalk 1>&2; ssh
822323 /bin/sh /usr/lib/git-core/git-submodule update --require-init --recursive --progress --no-single-branch
GIT_CONFIG_COUNT=1
GIT_CONFIG_KEY_0=foo.bar
GIT_CONFIG_VALUE_0=baz
GIT_DIR=/home/ek/tmp/has-nested-submodule/.git
GIT_EXEC_PATH=/usr/lib/git-core
GIT_SSH_COMMAND=pswalk 1>&2; ssh
822329 git submodule--helper update-clone --progress --require-init --no-single-branch --
GIT_SSH_COMMAND=pswalk 1>&2; ssh
GIT_EXEC_PATH=/usr/lib/git-core
GIT_DIR=/home/ek/tmp/has-nested-submodule/.git
GIT_CONFIG_COUNT=1
GIT_PROTOCOL_FROM_USER=0
GIT_INTERNAL_GETTEXT_SH_SCHEME=gnu
GIT_CONFIG_VALUE_0=baz
GIT_CONFIG_KEY_0=foo.bar
822338 /usr/lib/git-core/git submodule--helper clone --progress --require-init --path has-submodule --name has-submodule --url git@github.com:EliahKagan/has-submodule.git --no-single-branch
GIT_CONFIG_COUNT=1
GIT_CONFIG_KEY_0=foo.bar
GIT_CONFIG_VALUE_0=baz
GIT_DIR=/home/ek/tmp/has-nested-submodule/.git
GIT_EXEC_PATH=/usr/lib/git-core
GIT_INTERNAL_GETTEXT_SH_SCHEME=gnu
GIT_PREFIX=
GIT_PROTOCOL_FROM_USER=0
GIT_SSH_COMMAND=pswalk 1>&2; ssh
822350 /usr/lib/git-core/git clone --no-checkout --progress --separate-git-dir /home/ek/tmp/has-nested-submodule/.git/modules/has-submodule --no-single-branch -- git@github.com:EliahKagan/has-submodule.git /home/ek/tmp/has-nested-submodule/has-submodule
GIT_CONFIG_COUNT=1
GIT_CONFIG_KEY_0=foo.bar
GIT_CONFIG_VALUE_0=baz
GIT_DIR=.git
GIT_EXEC_PATH=/usr/lib/git-core
GIT_INTERNAL_GETTEXT_SH_SCHEME=gnu
GIT_PROTOCOL_FROM_USER=0
GIT_SSH_COMMAND=pswalk 1>&2; ssh
823002 /bin/sh -c pswalk 1>&2; ssh "$@" pswalk 1>&2; ssh -o SendEnv=GIT_PROTOCOL git@github.com git-upload-pack 'EliahKagan/has-submodule.git'
GIT_CONFIG_KEY_0=foo.bar
GIT_CONFIG_VALUE_0=baz
GIT_EXEC_PATH=/usr/lib/git-core
GIT_INTERNAL_GETTEXT_SH_SCHEME=gnu
GIT_PROTOCOL=version=2
GIT_PROTOCOL_FROM_USER=0
GIT_SSH_COMMAND=pswalk 1>&2; ssh
remote: Enumerating objects: 4, done.
remote: Counting objects: 100% (4/4), done.
remote: Compressing objects: 100% (4/4), done.
remote: Total 4 (delta 0), reused 4 (delta 0), pack-reused 0
Receiving objects: 100% (4/4), done.
Submodule path 'has-submodule': checked out '8de4a40d782ddfd338f2ada312714d60541c6f80'
Submodule 'trivial' (git@github.com:EliahKagan/trivial.git) registered for path 'has-submodule/trivial'
Cloning into '/home/ek/tmp/has-nested-submodule/has-submodule/trivial'...
6731 -bash
820166 git clone --recurse-submodules git@github.com:EliahKagan/has-nested-submodule.git
GIT_CONFIG_COUNT=1
GIT_CONFIG_KEY_0=foo.bar
GIT_SSH_COMMAND=pswalk 1>&2; ssh
GIT_CONFIG_VALUE_0=baz
822142 /usr/lib/git-core/git submodule update --require-init --recursive --progress --no-single-branch
GIT_CONFIG_COUNT=1
GIT_CONFIG_KEY_0=foo.bar
GIT_CONFIG_VALUE_0=baz
GIT_DIR=/home/ek/tmp/has-nested-submodule/.git
GIT_EXEC_PATH=/usr/lib/git-core
GIT_SSH_COMMAND=pswalk 1>&2; ssh
822153 /bin/sh /usr/lib/git-core/git-submodule update --require-init --recursive --progress --no-single-branch
GIT_CONFIG_COUNT=1
GIT_CONFIG_KEY_0=foo.bar
GIT_CONFIG_VALUE_0=baz
GIT_DIR=/home/ek/tmp/has-nested-submodule/.git
GIT_EXEC_PATH=/usr/lib/git-core
GIT_SSH_COMMAND=pswalk 1>&2; ssh
822324 /bin/sh /usr/lib/git-core/git-submodule update --require-init --recursive --progress --no-single-branch
GIT_CONFIG_COUNT=1
GIT_CONFIG_KEY_0=foo.bar
GIT_CONFIG_VALUE_0=baz
GIT_DIR=/home/ek/tmp/has-nested-submodule/.git
GIT_EXEC_PATH=/usr/lib/git-core
GIT_SSH_COMMAND=pswalk 1>&2; ssh
825251 /bin/sh /usr/lib/git-core/git-submodule update --require-init --recursive --progress --no-single-branch
GIT_CONFIG_COUNT=1
GIT_CONFIG_KEY_0=foo.bar
GIT_CONFIG_VALUE_0=baz
GIT_DIR=/home/ek/tmp/has-nested-submodule/.git
GIT_EXEC_PATH=/usr/lib/git-core
GIT_SSH_COMMAND=pswalk 1>&2; ssh
825285 /bin/sh /usr/lib/git-core/git-submodule update --require-init --recursive --progress --no-single-branch
GIT_CONFIG_COUNT=1
GIT_CONFIG_KEY_0=foo.bar
GIT_CONFIG_VALUE_0=baz
GIT_DIR=/home/ek/tmp/has-nested-submodule/.git
GIT_EXEC_PATH=/usr/lib/git-core
GIT_SSH_COMMAND=pswalk 1>&2; ssh
825288 git submodule--helper update-clone --progress --recursive-prefix has-submodule/ --require-init --no-single-branch --
GIT_SSH_COMMAND=pswalk 1>&2; ssh
GIT_EXEC_PATH=/usr/lib/git-core
GIT_PROTOCOL_FROM_USER=0
GIT_CONFIG_PARAMETERS=
GIT_INTERNAL_GETTEXT_SH_SCHEME=gnu
GIT_CONFIG_VALUE_0=baz
GIT_CONFIG_KEY_0=foo.bar
825297 /usr/lib/git-core/git submodule--helper clone --progress --require-init --path trivial --name trivial --url git@github.com:EliahKagan/trivial.git --no-single-branch
GIT_CONFIG_KEY_0=foo.bar
GIT_CONFIG_PARAMETERS=
GIT_CONFIG_VALUE_0=baz
GIT_DIR=/home/ek/tmp/has-nested-submodule/.git/modules/has-submodule
GIT_EXEC_PATH=/usr/lib/git-core
GIT_INTERNAL_GETTEXT_SH_SCHEME=gnu
GIT_PREFIX=
GIT_PROTOCOL_FROM_USER=0
GIT_SSH_COMMAND=pswalk 1>&2; ssh
825310 /usr/lib/git-core/git clone --no-checkout --progress --separate-git-dir /home/ek/tmp/has-nested-submodule/.git/modules/has-submodule/modules/trivial --no-single-branch -- git@github.com:EliahKagan/trivial.git /home/ek/tmp/has-nested-submodule/has-submodule/trivial
GIT_CONFIG_KEY_0=foo.bar
GIT_CONFIG_PARAMETERS=
GIT_CONFIG_VALUE_0=baz
GIT_DIR=.git
GIT_EXEC_PATH=/usr/lib/git-core
GIT_INTERNAL_GETTEXT_SH_SCHEME=gnu
GIT_PROTOCOL_FROM_USER=0
GIT_SSH_COMMAND=pswalk 1>&2; ssh
826130 /bin/sh -c pswalk 1>&2; ssh "$@" pswalk 1>&2; ssh -o SendEnv=GIT_PROTOCOL git@github.com git-upload-pack 'EliahKagan/trivial.git'
GIT_CONFIG_KEY_0=foo.bar
GIT_CONFIG_VALUE_0=baz
GIT_EXEC_PATH=/usr/lib/git-core
GIT_INTERNAL_GETTEXT_SH_SCHEME=gnu
GIT_PROTOCOL=version=2
GIT_PROTOCOL_FROM_USER=0
GIT_SSH_COMMAND=pswalk 1>&2; ssh
remote: Enumerating objects: 3, done.
remote: Counting objects: 100% (3/3), done.
remote: Compressing objects: 100% (2/2), done.
remote: Total 3 (delta 0), reused 3 (delta 0), pack-reused 0
Receiving objects: 100% (3/3), done.
Submodule path 'has-submodule/trivial': checked out '656a18dc1e48e035a05a72011a62bca5f41fa07e'
ek@apok:~/tmp$ rm -rf has-nested-submodule/
ek@apok:~/tmp$ PATH="$HOME/git-2.34.1/bin:$PATH" git version
git version 2.34.1
ek@apok:~/tmp$ PATH="$HOME/git-2.34.1/bin:$PATH" type git
git is /home/ek/git-2.34.1/bin/git
ek@apok:~/tmp$ PATH="$HOME/git-2.34.1/bin:$PATH" GIT_SSH_COMMAND='pswalk 1>&2; ssh' GIT_CONFIG_COUNT=1 GIT_CONFIG_KEY_0=foo.bar GIT_CONFIG_VALUE_0=baz git clone --recurse-submodules git@github.com:EliahKagan/has-nested-submodule.git
Cloning into 'has-nested-submodule'...
6731 -bash
1029620 git clone --recurse-submodules git@github.com:EliahKagan/has-nested-submodule.git
GIT_CONFIG_COUNT=1
GIT_CONFIG_KEY_0=foo.bar
GIT_SSH_COMMAND=pswalk 1>&2; ssh
GIT_CONFIG_VALUE_0=baz
1029634 /bin/sh -c pswalk 1>&2; ssh "$@" pswalk 1>&2; ssh -o SendEnv=GIT_PROTOCOL git@github.com git-upload-pack 'EliahK
GIT_CONFIG_KEY_0=foo.bar
GIT_CONFIG_VALUE_0=baz
GIT_EXEC_PATH=/home/ek/git-2.34.1/libexec/git-core
GIT_PROTOCOL=version=2
GIT_SSH_COMMAND=pswalk 1>&2; ssh
remote: Enumerating objects: 4, done.
remote: Counting objects: 100% (4/4), done.
remote: Compressing objects: 100% (4/4), done.
remote: Total 4 (delta 0), reused 4 (delta 0), pack-reused 0
Receiving objects: 100% (4/4), done.
Submodule 'has-submodule' (git@github.com:EliahKagan/has-submodule.git) registered for path 'has-submodule'
Cloning into '/home/ek/tmp/has-nested-submodule/has-submodule'...
6731 -bash
1029620 git clone --recurse-submodules git@github.com:EliahKagan/has-nested-submodule.git
GIT_CONFIG_COUNT=1
GIT_CONFIG_KEY_0=foo.bar
GIT_SSH_COMMAND=pswalk 1>&2; ssh
GIT_CONFIG_VALUE_0=baz
1029650 /home/ek/git-2.34.1/libexec/git-core/git submodule update --require-init --recursive --progress --no-single-branch
GIT_CONFIG_COUNT=1
GIT_CONFIG_KEY_0=foo.bar
GIT_CONFIG_VALUE_0=baz
GIT_DIR=/home/ek/tmp/has-nested-submodule/.git
GIT_EXEC_PATH=/home/ek/git-2.34.1/libexec/git-core
GIT_SSH_COMMAND=pswalk 1>&2; ssh
1029651 /bin/sh /home/ek/git-2.34.1/libexec/git-core/git-submodule update --require-init --recursive --progress --no-single-branch
GIT_CONFIG_COUNT=1
GIT_CONFIG_KEY_0=foo.bar
GIT_CONFIG_VALUE_0=baz
GIT_DIR=/home/ek/tmp/has-nested-submodule/.git
GIT_EXEC_PATH=/home/ek/git-2.34.1/libexec/git-core
GIT_SSH_COMMAND=pswalk 1>&2; ssh
1029676 /bin/sh /home/ek/git-2.34.1/libexec/git-core/git-submodule update --require-init --recursive --progress --no-single-branch
GIT_CONFIG_COUNT=1
GIT_CONFIG_KEY_0=foo.bar
GIT_CONFIG_VALUE_0=baz
GIT_DIR=/home/ek/tmp/has-nested-submodule/.git
GIT_EXEC_PATH=/home/ek/git-2.34.1/libexec/git-core
GIT_SSH_COMMAND=pswalk 1>&2; ssh
1029678 git submodule--helper update-clone --progress --require-init --no-single-branch --
GIT_SSH_COMMAND=pswalk 1>&2; ssh
GIT_EXEC_PATH=/home/ek/git-2.34.1/libexec/git-core
GIT_DIR=/home/ek/tmp/has-nested-submodule/.git
GIT_CONFIG_COUNT=1
GIT_PROTOCOL_FROM_USER=0
GIT_INTERNAL_GETTEXT_SH_SCHEME=gnu
GIT_CONFIG_VALUE_0=baz
GIT_CONFIG_KEY_0=foo.bar
1029679 /home/ek/git-2.34.1/libexec/git-core/git submodule--helper clone --progress --require-init --path has-submodule --name has-submodule --url git@github.com:EliahKagan/has-submodule.git --no-single-branch
GIT_CONFIG_COUNT=1
GIT_CONFIG_KEY_0=foo.bar
GIT_CONFIG_VALUE_0=baz
GIT_DIR=/home/ek/tmp/has-nested-submodule/.git
GIT_EXEC_PATH=/home/ek/git-2.34.1/libexec/git-core
GIT_INTERNAL_GETTEXT_SH_SCHEME=gnu
GIT_PREFIX=
GIT_PROTOCOL_FROM_USER=0
GIT_SSH_COMMAND=pswalk 1>&2; ssh
1029680 /home/ek/git-2.34.1/libexec/git-core/git clone --no-checkout --progress --separate-git-dir /home/ek/tmp/has-nested-submodule/.git/modules/has-submodule --no-single-branch -- git@github.com:EliahKagan/has-submodule.git /home/ek/tmp/has-nested-submodule/has-submodule
GIT_CONFIG_COUNT=1
GIT_CONFIG_KEY_0=foo.bar
GIT_CONFIG_VALUE_0=baz
GIT_DIR=.git
GIT_EXEC_PATH=/home/ek/git-2.34.1/libexec/git-core
GIT_INTERNAL_GETTEXT_SH_SCHEME=gnu
GIT_PROTOCOL_FROM_USER=0
GIT_SSH_COMMAND=pswalk 1>&2; ssh
1029712 /bin/sh -c pswalk 1>&2; ssh "$@" pswalk 1>&2; ssh -o SendEnv=GIT_PROTOCOL git@github.com git-upload-pack 'EliahKagan/has-submodule.git'
GIT_CONFIG_KEY_0=foo.bar
GIT_CONFIG_VALUE_0=baz
GIT_EXEC_PATH=/home/ek/git-2.34.1/libexec/git-core
GIT_INTERNAL_GETTEXT_SH_SCHEME=gnu
GIT_PROTOCOL=version=2
GIT_PROTOCOL_FROM_USER=0
GIT_SSH_COMMAND=pswalk 1>&2; ssh
remote: Enumerating objects: 4, done.
remote: Counting objects: 100% (4/4), done.
remote: Compressing objects: 100% (4/4), done.
remote: Total 4 (delta 0), reused 4 (delta 0), pack-reused 0
Receiving objects: 100% (4/4), done.
Submodule path 'has-submodule': checked out '8de4a40d782ddfd338f2ada312714d60541c6f80'
Submodule 'trivial' (git@github.com:EliahKagan/trivial.git) registered for path 'has-submodule/trivial'
Cloning into '/home/ek/tmp/has-nested-submodule/has-submodule/trivial'...
6731 -bash
1029620 git clone --recurse-submodules git@github.com:EliahKagan/has-nested-submodule.git
GIT_CONFIG_COUNT=1
GIT_CONFIG_KEY_0=foo.bar
GIT_SSH_COMMAND=pswalk 1>&2; ssh
GIT_CONFIG_VALUE_0=baz
1029650 /home/ek/git-2.34.1/libexec/git-core/git submodule update --require-init --recursive --progress --no-single-branch
GIT_CONFIG_COUNT=1
GIT_CONFIG_KEY_0=foo.bar
GIT_CONFIG_VALUE_0=baz
GIT_DIR=/home/ek/tmp/has-nested-submodule/.git
GIT_EXEC_PATH=/home/ek/git-2.34.1/libexec/git-core
GIT_SSH_COMMAND=pswalk 1>&2; ssh
1029651 /bin/sh /home/ek/git-2.34.1/libexec/git-core/git-submodule update --require-init --recursive --progress --no-single-branch
GIT_CONFIG_COUNT=1
GIT_CONFIG_KEY_0=foo.bar
GIT_CONFIG_VALUE_0=baz
GIT_DIR=/home/ek/tmp/has-nested-submodule/.git
GIT_EXEC_PATH=/home/ek/git-2.34.1/libexec/git-core
GIT_SSH_COMMAND=pswalk 1>&2; ssh
1029677 /bin/sh /home/ek/git-2.34.1/libexec/git-core/git-submodule update --require-init --recursive --progress --no-single-branch
GIT_CONFIG_COUNT=1
GIT_CONFIG_KEY_0=foo.bar
GIT_CONFIG_VALUE_0=baz
GIT_DIR=/home/ek/tmp/has-nested-submodule/.git
GIT_EXEC_PATH=/home/ek/git-2.34.1/libexec/git-core
GIT_SSH_COMMAND=pswalk 1>&2; ssh
1029752 /bin/sh /home/ek/git-2.34.1/libexec/git-core/git-submodule update --require-init --recursive --progress --no-single-branch
GIT_CONFIG_COUNT=1
GIT_CONFIG_KEY_0=foo.bar
GIT_CONFIG_VALUE_0=baz
GIT_DIR=/home/ek/tmp/has-nested-submodule/.git
GIT_EXEC_PATH=/home/ek/git-2.34.1/libexec/git-core
GIT_SSH_COMMAND=pswalk 1>&2; ssh
1029756 /bin/sh /home/ek/git-2.34.1/libexec/git-core/git-submodule update --require-init --recursive --progress --no-single-branch
GIT_CONFIG_COUNT=1
GIT_CONFIG_KEY_0=foo.bar
GIT_CONFIG_VALUE_0=baz
GIT_DIR=/home/ek/tmp/has-nested-submodule/.git
GIT_EXEC_PATH=/home/ek/git-2.34.1/libexec/git-core
GIT_SSH_COMMAND=pswalk 1>&2; ssh
1029758 git submodule--helper update-clone --progress --recursive-prefix has-submodule/ --require-init --no-single-branch --
GIT_SSH_COMMAND=pswalk 1>&2; ssh
GIT_EXEC_PATH=/home/ek/git-2.34.1/libexec/git-core
GIT_PROTOCOL_FROM_USER=0
GIT_CONFIG_PARAMETERS=
GIT_INTERNAL_GETTEXT_SH_SCHEME=gnu
GIT_CONFIG_VALUE_0=baz
GIT_CONFIG_KEY_0=foo.bar
1029759 /home/ek/git-2.34.1/libexec/git-core/git submodule--helper clone --progress --require-init --path trivial --name trivial --url git@github.com:EliahKagan/trivial.git --no-single-branch
GIT_CONFIG_KEY_0=foo.bar
GIT_CONFIG_PARAMETERS=
GIT_CONFIG_VALUE_0=baz
GIT_DIR=/home/ek/tmp/has-nested-submodule/.git/modules/has-submodule
GIT_EXEC_PATH=/home/ek/git-2.34.1/libexec/git-core
GIT_INTERNAL_GETTEXT_SH_SCHEME=gnu
GIT_PREFIX=
GIT_PROTOCOL_FROM_USER=0
GIT_SSH_COMMAND=pswalk 1>&2; ssh
1029760 /home/ek/git-2.34.1/libexec/git-core/git clone --no-checkout --progress --separate-git-dir /home/ek/tmp/has-nested-submodule/.git/modules/has-submodule/modules/trivial --no-single-branch -- git@github.com:EliahKagan/trivial.git /home/ek/tmp/has-nested-submodule/has-submodule/trivial
GIT_CONFIG_KEY_0=foo.bar
GIT_CONFIG_PARAMETERS=
GIT_CONFIG_VALUE_0=baz
GIT_DIR=.git
GIT_EXEC_PATH=/home/ek/git-2.34.1/libexec/git-core
GIT_INTERNAL_GETTEXT_SH_SCHEME=gnu
GIT_PROTOCOL_FROM_USER=0
GIT_SSH_COMMAND=pswalk 1>&2; ssh
1029798 /bin/sh -c pswalk 1>&2; ssh "$@" pswalk 1>&2; ssh -o SendEnv=GIT_PROTOCOL git@github.com git-upload-pack 'EliahKagan/trivial.git'
GIT_CONFIG_KEY_0=foo.bar
GIT_CONFIG_VALUE_0=baz
GIT_EXEC_PATH=/home/ek/git-2.34.1/libexec/git-core
GIT_INTERNAL_GETTEXT_SH_SCHEME=gnu
GIT_PROTOCOL=version=2
GIT_PROTOCOL_FROM_USER=0
GIT_SSH_COMMAND=pswalk 1>&2; ssh
remote: Enumerating objects: 3, done.
remote: Counting objects: 100% (3/3), done.
remote: Compressing objects: 100% (2/2), done.
remote: Total 3 (delta 0), reused 3 (delta 0), pack-reused 0
Receiving objects: 100% (3/3), done.
Submodule path 'has-submodule/trivial': checked out '656a18dc1e48e035a05a72011a62bca5f41fa07e'
ek@apok:~/tmp$ rm -rf has-nested-submodule/
ek@apok:~/tmp$ PATH="$HOME/git-2.45.2/bin:$PATH" git version
git version 2.45.2
ek@apok:~/tmp$ PATH="$HOME/git-2.45.2/bin:$PATH" type git
git is /home/ek/git-2.45.2/bin/git
ek@apok:~/tmp$ PATH="$HOME/git-2.45.2/bin:$PATH" GIT_SSH_COMMAND='pswalk 1>&2; ssh' GIT_CONFIG_COUNT=1 GIT_CONFIG_KEY_0=foo.bar GIT_CONFIG_VALUE_0=baz git clone --recurse-submodules git@github.com:EliahKagan/has-nested-submodule.git
Cloning into 'has-nested-submodule'...
6731 -bash
1029997 git clone --recurse-submodules git@github.com:EliahKagan/has-nested-submodule.git
GIT_CONFIG_COUNT=1
GIT_CONFIG_KEY_0=foo.bar
GIT_SSH_COMMAND=pswalk 1>&2; ssh
GIT_CONFIG_VALUE_0=baz
1030011 /bin/sh -c pswalk 1>&2; ssh "$@" pswalk 1>&2; ssh -o SendEnv=GIT_PROTOCOL git@github.com git-upload-pack 'EliahK
GIT_CONFIG_KEY_0=foo.bar
GIT_CONFIG_VALUE_0=baz
GIT_EXEC_PATH=/home/ek/git-2.45.2/libexec/git-core
GIT_PROTOCOL=version=2
GIT_SSH_COMMAND=pswalk 1>&2; ssh
remote: Enumerating objects: 4, done.
remote: Counting objects: 100% (4/4), done.
remote: Compressing objects: 100% (4/4), done.
remote: Total 4 (delta 0), reused 4 (delta 0), pack-reused 0
Receiving objects: 100% (4/4), done.
Submodule 'has-submodule' (git@github.com:EliahKagan/has-submodule.git) registered for path 'has-submodule'
Cloning into '/home/ek/tmp/has-nested-submodule/has-submodule'...
6731 -bash
1029997 git clone --recurse-submodules git@github.com:EliahKagan/has-nested-submodule.git
GIT_CONFIG_COUNT=1
GIT_CONFIG_KEY_0=foo.bar
GIT_SSH_COMMAND=pswalk 1>&2; ssh
GIT_CONFIG_VALUE_0=baz
1030027 /home/ek/git-2.45.2/libexec/git-core/git submodule update --require-init --recursive --progress --no-single-branch
GIT_CONFIG_COUNT=1
GIT_CONFIG_KEY_0=foo.bar
GIT_CONFIG_VALUE_0=baz
GIT_DIR=/home/ek/tmp/has-nested-submodule/.git
GIT_EXEC_PATH=/home/ek/git-2.45.2/libexec/git-core
GIT_SSH_COMMAND=pswalk 1>&2; ssh
1030028 /bin/sh /home/ek/git-2.45.2/libexec/git-core/git-submodule update --require-init --recursive --progress --no-single-branch
GIT_CONFIG_COUNT=1
GIT_CONFIG_KEY_0=foo.bar
GIT_CONFIG_VALUE_0=baz
GIT_DIR=/home/ek/tmp/has-nested-submodule/.git
GIT_EXEC_PATH=/home/ek/git-2.45.2/libexec/git-core
GIT_SSH_COMMAND=pswalk 1>&2; ssh
1030052 git submodule--helper update --progress --recursive --require-init --no-single-branch --
GIT_SSH_COMMAND=pswalk 1>&2; ssh
GIT_EXEC_PATH=/home/ek/git-2.45.2/libexec/git-core
GIT_DIR=/home/ek/tmp/has-nested-submodule/.git
GIT_CONFIG_COUNT=1
GIT_PROTOCOL_FROM_USER=0
GIT_INTERNAL_GETTEXT_SH_SCHEME=gnu
GIT_CONFIG_VALUE_0=baz
GIT_CONFIG_KEY_0=foo.bar
1030053 /home/ek/git-2.45.2/libexec/git-core/git submodule--helper clone --progress --require-init --path has-submodule --name has-submodule --url git@github.com:EliahKagan/has-submodule.git --no-single-branch
GIT_CONFIG_COUNT=1
GIT_CONFIG_KEY_0=foo.bar
GIT_CONFIG_VALUE_0=baz
GIT_DIR=/home/ek/tmp/has-nested-submodule/.git
GIT_EXEC_PATH=/home/ek/git-2.45.2/libexec/git-core
GIT_INTERNAL_GETTEXT_SH_SCHEME=gnu
GIT_PREFIX=
GIT_PROTOCOL_FROM_USER=0
GIT_SSH_COMMAND=pswalk 1>&2; ssh
1030054 /home/ek/git-2.45.2/libexec/git-core/git clone --no-checkout --progress --separate-git-dir /home/ek/tmp/has-nested-submodule/.git/modules/has-submodule --no-single-branch -- git@github.com:EliahKagan/has-submodule.git /home/ek/tmp/has-nested-submodule/has-submodule
GIT_CONFIG_COUNT=1
GIT_CONFIG_KEY_0=foo.bar
GIT_CONFIG_VALUE_0=baz
GIT_DIR=.git
GIT_EXEC_PATH=/home/ek/git-2.45.2/libexec/git-core
GIT_INTERNAL_GETTEXT_SH_SCHEME=gnu
GIT_PROTOCOL_FROM_USER=0
GIT_SSH_COMMAND=pswalk 1>&2; ssh
1030083 /bin/sh -c pswalk 1>&2; ssh "$@" pswalk 1>&2; ssh -o SendEnv=GIT_PROTOCOL git@github.com git-upload-pack 'EliahKagan/has-submodule.git'
GIT_CONFIG_KEY_0=foo.bar
GIT_CONFIG_VALUE_0=baz
GIT_EXEC_PATH=/home/ek/git-2.45.2/libexec/git-core
GIT_INTERNAL_GETTEXT_SH_SCHEME=gnu
GIT_PROTOCOL=version=2
GIT_PROTOCOL_FROM_USER=0
GIT_SSH_COMMAND=pswalk 1>&2; ssh
remote: Enumerating objects: 4, done.
remote: Counting objects: 100% (4/4), done.
remote: Compressing objects: 100% (4/4), done.
remote: Total 4 (delta 0), reused 4 (delta 0), pack-reused 0
Receiving objects: 100% (4/4), done.
Submodule path 'has-submodule': checked out '8de4a40d782ddfd338f2ada312714d60541c6f80'
Submodule 'trivial' (git@github.com:EliahKagan/trivial.git) registered for path 'has-submodule/trivial'
Cloning into '/home/ek/tmp/has-nested-submodule/has-submodule/trivial'...
6731 -bash
1029997 git clone --recurse-submodules git@github.com:EliahKagan/has-nested-submodule.git
GIT_CONFIG_COUNT=1
GIT_CONFIG_KEY_0=foo.bar
GIT_SSH_COMMAND=pswalk 1>&2; ssh
GIT_CONFIG_VALUE_0=baz
1030027 /home/ek/git-2.45.2/libexec/git-core/git submodule update --require-init --recursive --progress --no-single-branch
GIT_CONFIG_COUNT=1
GIT_CONFIG_KEY_0=foo.bar
GIT_CONFIG_VALUE_0=baz
GIT_DIR=/home/ek/tmp/has-nested-submodule/.git
GIT_EXEC_PATH=/home/ek/git-2.45.2/libexec/git-core
GIT_SSH_COMMAND=pswalk 1>&2; ssh
1030028 /bin/sh /home/ek/git-2.45.2/libexec/git-core/git-submodule update --require-init --recursive --progress --no-single-branch
GIT_CONFIG_COUNT=1
GIT_CONFIG_KEY_0=foo.bar
GIT_CONFIG_VALUE_0=baz
GIT_DIR=/home/ek/tmp/has-nested-submodule/.git
GIT_EXEC_PATH=/home/ek/git-2.45.2/libexec/git-core
GIT_SSH_COMMAND=pswalk 1>&2; ssh
1030052 git submodule--helper update --progress --recursive --require-init --no-single-branch --
GIT_SSH_COMMAND=pswalk 1>&2; ssh
GIT_EXEC_PATH=/home/ek/git-2.45.2/libexec/git-core
GIT_DIR=/home/ek/tmp/has-nested-submodule/.git
GIT_CONFIG_COUNT=1
GIT_PROTOCOL_FROM_USER=0
GIT_INTERNAL_GETTEXT_SH_SCHEME=gnu
GIT_CONFIG_VALUE_0=baz
GIT_CONFIG_KEY_0=foo.bar
1030117 /home/ek/git-2.45.2/libexec/git-core/git submodule--helper update --recursive --super-prefix has-submodule/ --jobs=1 --init --progress --require-init --no-single-branch
GIT_CONFIG_COUNT=1
GIT_CONFIG_KEY_0=foo.bar
GIT_CONFIG_VALUE_0=baz
GIT_DIR=.git
GIT_EXEC_PATH=/home/ek/git-2.45.2/libexec/git-core
GIT_INTERNAL_GETTEXT_SH_SCHEME=gnu
GIT_PROTOCOL_FROM_USER=0
GIT_SSH_COMMAND=pswalk 1>&2; ssh
1030118 /home/ek/git-2.45.2/libexec/git-core/git submodule--helper clone --progress --require-init --path trivial --name trivial --url git@github.com:EliahKagan/trivial.git --no-single-branch
GIT_CONFIG_COUNT=1
GIT_CONFIG_KEY_0=foo.bar
GIT_CONFIG_VALUE_0=baz
GIT_DIR=/home/ek/tmp/has-nested-submodule/.git/modules/has-submodule
GIT_EXEC_PATH=/home/ek/git-2.45.2/libexec/git-core
GIT_INTERNAL_GETTEXT_SH_SCHEME=gnu
GIT_PREFIX=
GIT_PROTOCOL_FROM_USER=0
GIT_SSH_COMMAND=pswalk 1>&2; ssh
1030119 /home/ek/git-2.45.2/libexec/git-core/git clone --no-checkout --progress --separate-git-dir /home/ek/tmp/has-nested-submodule/.git/modules/has-submodule/modules/trivial --no-single-branch -- git@github.com:EliahKagan/trivial.git /home/ek/tmp/has-nested-submodule/has-submodule/trivial
GIT_CONFIG_COUNT=1
GIT_CONFIG_KEY_0=foo.bar
GIT_CONFIG_VALUE_0=baz
GIT_DIR=.git
GIT_EXEC_PATH=/home/ek/git-2.45.2/libexec/git-core
GIT_INTERNAL_GETTEXT_SH_SCHEME=gnu
GIT_PROTOCOL_FROM_USER=0
GIT_SSH_COMMAND=pswalk 1>&2; ssh
1030151 /bin/sh -c pswalk 1>&2; ssh "$@" pswalk 1>&2; ssh -o SendEnv=GIT_PROTOCOL git@github.com git-upload-pack 'EliahKagan/trivial.git'
GIT_CONFIG_KEY_0=foo.bar
GIT_CONFIG_VALUE_0=baz
GIT_EXEC_PATH=/home/ek/git-2.45.2/libexec/git-core
GIT_INTERNAL_GETTEXT_SH_SCHEME=gnu
GIT_PROTOCOL=version=2
GIT_PROTOCOL_FROM_USER=0
GIT_SSH_COMMAND=pswalk 1>&2; ssh
remote: Enumerating objects: 3, done.
remote: Counting objects: 100% (3/3), done.
remote: Compressing objects: 100% (2/2), done.
remote: Total 3 (delta 0), reused 3 (delta 0), pack-reused 0
Receiving objects: 100% (3/3), done.
Submodule path 'has-submodule/trivial': checked out '656a18dc1e48e035a05a72011a62bca5f41fa07e'
ek@apok:~/tmp$ GIT_SSH_COMMAND='{ pid="$(ps -o ppid:1= -p "$$")"; ps -o pid:1=,cmd= -p "$pid"; awk -v RS=\\0 "/^GIT_CONFIG/ { print \" \" \$0 }" "/proc/$pid/environ"; } 1>&2; ssh' GIT_CONFIG_COUNT=1 GIT_CONFIG_KEY_0=foo.bar GIT_CONFIG_VALUE_0=baz git clone --recurse-submodules git@github.com:EliahKagan/has-nested-submodule.git
Cloning into 'has-nested-submodule'...
1031239 git clone --recurse-submodules git@github.com:EliahKagan/has-nested-submodule.git
GIT_CONFIG_COUNT=1
GIT_CONFIG_KEY_0=foo.bar
GIT_CONFIG_VALUE_0=baz
remote: Enumerating objects: 4, done.
remote: Counting objects: 100% (4/4), done.
remote: Compressing objects: 100% (4/4), done.
remote: Total 4 (delta 0), reused 4 (delta 0), pack-reused 0
Receiving objects: 100% (4/4), done.
Submodule 'has-submodule' (git@github.com:EliahKagan/has-submodule.git) registered for path 'has-submodule'
Cloning into '/home/ek/tmp/has-nested-submodule/has-submodule'...
1031283 /usr/lib/git-core/git clone --no-checkout --progress --separate-git-dir /home/ek/tmp/has-nested-submodule/.git/modules/has-submodule --no-single-branch -- git@github.com:EliahKagan/has-submodule.git /home/ek/tmp/has-nested-submodule/has-submodule
GIT_CONFIG_COUNT=1
GIT_CONFIG_KEY_0=foo.bar
GIT_CONFIG_VALUE_0=baz
remote: Enumerating objects: 4, done.
remote: Counting objects: 100% (4/4), done.
remote: Compressing objects: 100% (4/4), done.
remote: Total 4 (delta 0), reused 4 (delta 0), pack-reused 0
Receiving objects: 100% (4/4), done.
Submodule path 'has-submodule': checked out '8de4a40d782ddfd338f2ada312714d60541c6f80'
Submodule 'trivial' (git@github.com:EliahKagan/trivial.git) registered for path 'has-submodule/trivial'
Cloning into '/home/ek/tmp/has-nested-submodule/has-submodule/trivial'...
1031311 /usr/lib/git-core/git clone --no-checkout --progress --separate-git-dir /home/ek/tmp/has-nested-submodule/.git/modules/has-submodule/modules/trivial --no-single-branch -- git@github.com:EliahKagan/trivial.git /home/ek/tmp/has-nested-submodule/has-submodule/trivial
GIT_CONFIG_KEY_0=foo.bar
GIT_CONFIG_PARAMETERS=
GIT_CONFIG_VALUE_0=baz
remote: Enumerating objects: 3, done.
remote: Counting objects: 100% (3/3), done.
remote: Compressing objects: 100% (2/2), done.
remote: Total 3 (delta 0), reused 3 (delta 0), pack-reused 0
Receiving objects: 100% (3/3), done.
Submodule path 'has-submodule/trivial': checked out '656a18dc1e48e035a05a72011a62bca5f41fa07e'
ek@apok:~/tmp$ PATH="$HOME/git-2.34.1/bin:$PATH" GIT_SSH_COMMAND='{ pid="$(ps -o ppid:1= -p "$$")"; ps -o pid:1=,cmd= -p "$pid"; awk -v RS=\\0 "/^GIT_CONFIG/ { print \" \" \$0 }" "/proc/$pid/environ"; } 1>&2; ssh' GIT_CONFIG_COUNT=1 GIT_CONFIG_KEY_0=foo.bar GIT_CONFIG_VALUE_0=baz git clone --recurse-submodules git@github.com:EliahKagan/has-nested-submodule.git
Cloning into 'has-nested-submodule'...
1031474 git clone --recurse-submodules git@github.com:EliahKagan/has-nested-submodule.git
GIT_CONFIG_COUNT=1
GIT_CONFIG_KEY_0=foo.bar
GIT_CONFIG_VALUE_0=baz
remote: Enumerating objects: 4, done.
remote: Counting objects: 100% (4/4), done.
remote: Compressing objects: 100% (4/4), done.
remote: Total 4 (delta 0), reused 4 (delta 0), pack-reused 0
Receiving objects: 100% (4/4), done.
Submodule 'has-submodule' (git@github.com:EliahKagan/has-submodule.git) registered for path 'has-submodule'
Cloning into '/home/ek/tmp/has-nested-submodule/has-submodule'...
1031518 /home/ek/git-2.34.1/libexec/git-core/git clone --no-checkout --progress --separate-git-dir /home/ek/tmp/has-nested-submodule/.git/modules/has-submodule --no-single-branch -- git@github.com:EliahKagan/has-submodule.git /home/ek/tmp/has-nested-submodule/has-submodule
GIT_CONFIG_COUNT=1
GIT_CONFIG_KEY_0=foo.bar
GIT_CONFIG_VALUE_0=baz
remote: Enumerating objects: 4, done.
remote: Counting objects: 100% (4/4), done.
remote: Compressing objects: 100% (4/4), done.
remote: Total 4 (delta 0), reused 4 (delta 0), pack-reused 0
Receiving objects: 100% (4/4), done.
Submodule path 'has-submodule': checked out '8de4a40d782ddfd338f2ada312714d60541c6f80'
Submodule 'trivial' (git@github.com:EliahKagan/trivial.git) registered for path 'has-submodule/trivial'
Cloning into '/home/ek/tmp/has-nested-submodule/has-submodule/trivial'...
1031546 /home/ek/git-2.34.1/libexec/git-core/git clone --no-checkout --progress --separate-git-dir /home/ek/tmp/has-nested-submodule/.git/modules/has-submodule/modules/trivial --no-single-branch -- git@github.com:EliahKagan/trivial.git /home/ek/tmp/has-nested-submodule/has-submodule/trivial
GIT_CONFIG_KEY_0=foo.bar
GIT_CONFIG_PARAMETERS=
GIT_CONFIG_VALUE_0=baz
remote: Enumerating objects: 3, done.
remote: Counting objects: 100% (3/3), done.
remote: Compressing objects: 100% (2/2), done.
remote: Total 3 (delta 0), reused 3 (delta 0), pack-reused 0
Receiving objects: 100% (3/3), done.
Submodule path 'has-submodule/trivial': checked out '656a18dc1e48e035a05a72011a62bca5f41fa07e'
ek@apok:~/tmp$ PATH="$HOME/git-2.45.2/bin:$PATH" GIT_SSH_COMMAND='{ pid="$(ps -o ppid:1= -p "$$")"; ps -o pid:1=,cmd= -p "$pid"; awk -v RS=\\0 "/^GIT_CONFIG/ { print \" \" \$0 }" "/proc/$pid/environ"; } 1>&2; ssh' GIT_CONFIG_COUNT=1 GIT_CONFIG_KEY_0=foo.bar GIT_CONFIG_VALUE_0=baz git clone --recurse-submodules git@github.com:EliahKagan/has-nested-submodule.git
Cloning into 'has-nested-submodule'...
1031642 git clone --recurse-submodules git@github.com:EliahKagan/has-nested-submodule.git
GIT_CONFIG_COUNT=1
GIT_CONFIG_KEY_0=foo.bar
GIT_CONFIG_VALUE_0=baz
remote: Enumerating objects: 4, done.
remote: Counting objects: 100% (4/4), done.
remote: Compressing objects: 100% (4/4), done.
remote: Total 4 (delta 0), reused 4 (delta 0), pack-reused 0
Receiving objects: 100% (4/4), done.
Submodule 'has-submodule' (git@github.com:EliahKagan/has-submodule.git) registered for path 'has-submodule'
Cloning into '/home/ek/tmp/has-nested-submodule/has-submodule'...
1031683 /home/ek/git-2.45.2/libexec/git-core/git clone --no-checkout --progress --separate-git-dir /home/ek/tmp/has-nested-submodule/.git/modules/has-submodule --no-single-branch -- git@github.com:EliahKagan/has-submodule.git /home/ek/tmp/has-nested-submodule/has-submodule
GIT_CONFIG_COUNT=1
GIT_CONFIG_KEY_0=foo.bar
GIT_CONFIG_VALUE_0=baz
remote: Enumerating objects: 4, done.
remote: Counting objects: 100% (4/4), done.
remote: Compressing objects: 100% (4/4), done.
remote: Total 4 (delta 0), reused 4 (delta 0), pack-reused 0
Receiving objects: 100% (4/4), done.
Submodule path 'has-submodule': checked out '8de4a40d782ddfd338f2ada312714d60541c6f80'
Submodule 'trivial' (git@github.com:EliahKagan/trivial.git) registered for path 'has-submodule/trivial'
Cloning into '/home/ek/tmp/has-nested-submodule/has-submodule/trivial'...
1031702 /home/ek/git-2.45.2/libexec/git-core/git clone --no-checkout --progress --separate-git-dir /home/ek/tmp/has-nested-submodule/.git/modules/has-submodule/modules/trivial --no-single-branch -- git@github.com:EliahKagan/trivial.git /home/ek/tmp/has-nested-submodule/has-submodule/trivial
GIT_CONFIG_COUNT=1
GIT_CONFIG_KEY_0=foo.bar
GIT_CONFIG_VALUE_0=baz
remote: Enumerating objects: 3, done.
remote: Counting objects: 100% (3/3), done.
remote: Compressing objects: 100% (2/2), done.
remote: Total 3 (delta 0), reused 3 (delta 0), pack-reused 0
Receiving objects: 100% (3/3), done.
Submodule path 'has-submodule/trivial': checked out '656a18dc1e48e035a05a72011a62bca5f41fa07e'
git bisect start
# old: [e9d7761bb94f20acc98824275e317fa82436c25d] Git 2.34.1
git bisect old e9d7761bb94f20acc98824275e317fa82436c25d
# new: [bea9ecd24b0c3bf06cab4a851694fe09e7e51408] Git 2.45.2
git bisect new bea9ecd24b0c3bf06cab4a851694fe09e7e51408
# new: [3167b60e5bd9fb8e2f9413b38001b624dc2e3da2] ci: upgrade to using macos-13
git bisect new 3167b60e5bd9fb8e2f9413b38001b624dc2e3da2
# new: [28c2a3599730cca72c587bec7a9a72705635d992] Merge branch 'jy/gitweb-xhtml5'
git bisect new 28c2a3599730cca72c587bec7a9a72705635d992
# old: [4a0479086a9bea5d31c4588b07bd45ae92a12b71] commit-graph: fix memory leak in misused string_list API
git bisect old 4a0479086a9bea5d31c4588b07bd45ae92a12b71
# new: [e7109d5c7c6863be1a0793ffdc64b6dba416a7d5] Merge branch 'ld/sparse-index-bash-completion'
git bisect new e7109d5c7c6863be1a0793ffdc64b6dba416a7d5
# old: [5cb28270a1ff94a0a23e67b479bbbec3bc993518] pack-objects: lazily set up "struct rev_info", don't leak
git bisect old 5cb28270a1ff94a0a23e67b479bbbec3bc993518
# old: [4b6846d9dcd391164b72bd70e8a0c0e09776afe3] The 17th batch
git bisect old 4b6846d9dcd391164b72bd70e8a0c0e09776afe3
# new: [0f5e8851737282c9dd342032fe9a2d8b10367c9a] Merge branch 'rc/fetch-refetch'
git bisect new 0f5e8851737282c9dd342032fe9a2d8b10367c9a
# old: [e8926670d4167c664f7dcbbec1c1887c51b5f08f] Merge branch 'ds/t7700-kept-pack-test'
git bisect old e8926670d4167c664f7dcbbec1c1887c51b5f08f
# new: [98f6a3a35335d5d4b48df0088f2da0075e07f99c] Merge branch 'ns/fsync-or-die-message-fix'
git bisect new 98f6a3a35335d5d4b48df0088f2da0075e07f99c
# new: [cf0e875cd823b6e2a17f387a9c83ec7dd96aac00] Merge branch 'gc/submodule-update-part2'
git bisect new cf0e875cd823b6e2a17f387a9c83ec7dd96aac00
# old: [49fd5b99a59621bf4428ea648b6656c126298212] builtin/submodule--helper.c: rename option struct to "opt"
git bisect old 49fd5b99a59621bf4428ea648b6656c126298212
# old: [75df9df0f81368816612cdb11a6c4bb054724ea3] submodule--helper: reduce logic in run_update_procedure()
git bisect old 75df9df0f81368816612cdb11a6c4bb054724ea3
# new: [f3875ab11528e605a0482940155e137537d238df] submodule--helper: remove forward declaration
git bisect new f3875ab11528e605a0482940155e137537d238df
# new: [b3c5f5cb04854b56b39a40696c366053c8f09b58] submodule: move core cmd_update() logic to C
git bisect new b3c5f5cb04854b56b39a40696c366053c8f09b58
# first new commit: [b3c5f5cb04854b56b39a40696c366053c8f09b58] submodule: move core cmd_update() logic to C
ek@apok:~/src/git (master=)$ git bisect start
ek@apok:~/src/git (master|BISECTING=)$ git bisect old v2.34.1
ek@apok:~/src/git (master|BISECTING=)$ git bisect new v2.45.2
Bisecting: 4067 revisions left to test after this (roughly 12 steps)
[3167b60e5bd9fb8e2f9413b38001b624dc2e3da2] ci: upgrade to using macos-13
ek@apok:~/src/git ((3167b60e5b...)|BISECTING)$ gix clean -xde
ek@apok:~/src/git ((3167b60e5b...)|BISECTING)$ ls
abspath.c entry.c merge-blobs.c resolve-undo.c
aclocal.m4 entry.h merge-blobs.h resolve-undo.h
add-interactive.c environment.c merge.c revision.c
add-interactive.h environment.h merge-ort.c revision.h
add-patch.c ewah merge-ort.h run-command.c
advice.c exec-cmd.c merge-ort-wrappers.c run-command.h
advice.h exec-cmd.h merge-ort-wrappers.h scalar.c
alias.c fetch-negotiator.c merge-recursive.c SECURITY.md
alias.h fetch-negotiator.h merge-recursive.h send-pack.c
alloc.c fetch-pack.c mergesort.h send-pack.h
alloc.h fetch-pack.h mergetools sequencer.c
apply.c fmt-merge-msg.c midx.c sequencer.h
apply.h fmt-merge-msg.h midx.h serve.c
archive.c fsck.c name-hash.c serve.h
archive.h fsck.h negotiator server-info.c
archive-tar.c fsmonitor.c notes.c setup.c
archive-zip.c fsmonitor--daemon.h notes-cache.c sha1collisiondetection
attr.c fsmonitor.h notes-cache.h sha1dc
attr.h fsmonitor-ipc.c notes.h sha1dc_git.c
banned.h fsmonitor-ipc.h notes-merge.c sha1dc_git.h
base85.c fsmonitor-path-utils.h notes-merge.h sha256
bisect.c fsmonitor-settings.c notes-utils.c shallow.c
bisect.h fsmonitor-settings.h notes-utils.h shallow.h
blame.c generate-cmdlist.sh object.c shared.mak
blame.h generate-configlist.sh object-file.c shell.c
blob.c generate-hooklist.sh object.h sh-i18n--envsubst.c
blob.h gettext.c object-name.c shortlog.h
block-sha1 gettext.h object-store.h sideband.c
bloom.c git-add--interactive.perl oid-array.c sideband.h
bloom.h git-archimport.perl oid-array.h sigchain.c
branch.c git-bisect.sh oidmap.c sigchain.h
branch.h git.c oidmap.h simple-ipc.h
builtin git-compat-util.h oidset.c sparse-index.c
builtin.h git-curl-compat.h oidset.h sparse-index.h
bulk-checkin.c git-cvsexportcommit.perl oidtree.c split-index.c
bulk-checkin.h git-cvsimport.perl oidtree.h split-index.h
bundle.c git-cvsserver.perl oss-fuzz stable-qsort.c
bundle.h git-difftool--helper.sh pack-bitmap.c strbuf.c
bundle-uri.c git-filter-branch.sh pack-bitmap.h strbuf.h
bundle-uri.h git-gui pack-bitmap-write.c streaming.c
cache.h git-instaweb.sh pack-check.c streaming.h
cache-tree.c gitk-git packfile.c string-list.c
cache-tree.h git-merge-octopus.sh packfile.h string-list.h
cbtree.c git-merge-one-file.sh pack.h strmap.c
cbtree.h git-merge-resolve.sh pack-mtimes.c strmap.h
chdir-notify.c git-mergetool--lib.sh pack-mtimes.h strvec.c
chdir-notify.h git-mergetool.sh pack-objects.c strvec.h
check-builtins.sh git-p4.py pack-objects.h submodule.c
checkout.c git-quiltimport.sh pack-revindex.c submodule-config.c
checkout.h git.rc pack-revindex.h submodule-config.h
chunk-format.c git-request-pull.sh pack-write.c submodule.h
chunk-format.h git-send-email.perl pager.c sub-process.c
ci git-sh-i18n.sh parallel-checkout.c sub-process.h
CODE_OF_CONDUCT.md git-sh-setup.sh parallel-checkout.h symlinks.c
color.c git-submodule.sh parse-options.c t
color.h git-svn.perl parse-options-cb.c tag.c
column.c GIT-VERSION-GEN parse-options.h tag.h
column.h gitweb patch-delta.c tar.h
combine-diff.c git-web--browse.sh patch-ids.c tempfile.c
command-list.txt gpg-interface.c patch-ids.h tempfile.h
commit.c gpg-interface.h path.c templates
commit-graph.c graph.c path.h thread-utils.c
commit-graph.h graph.h pathspec.c thread-utils.h
commit.h grep.c pathspec.h tmp-objdir.c
commit-reach.c grep.h perl tmp-objdir.h
commit-reach.h hash.h pkt-line.c trace2
commit-slab-decl.h hash-lookup.c pkt-line.h trace2.c
commit-slab.h hash-lookup.h po trace2.h
commit-slab-impl.h hashmap.c preload-index.c trace.c
common-main.c hashmap.h pretty.c trace.h
compat help.c pretty.h trailer.c
config.c help.h prio-queue.c trailer.h
config.h hex.c prio-queue.h transport.c
config.mak.dev hook.c progress.c transport.h
config.mak.in hook.h progress.h transport-helper.c
config.mak.uname http-backend.c promisor-remote.c transport-internal.h
configure.ac http.c promisor-remote.h tree.c
connect.c http-fetch.c prompt.c tree-diff.c
connected.c http.h prompt.h tree.h
connected.h http-push.c protocol.c tree-walk.c
connect.h http-walker.c protocol-caps.c tree-walk.h
contrib ident.c protocol-caps.h unicode-width.h
convert.c imap-send.c protocol.h unimplemented.sh
convert.h INSTALL prune-packed.c unix-socket.c
copy.c iterator.h prune-packed.h unix-socket.h
COPYING json-writer.c quote.c unix-stream-server.c
credential.c json-writer.h quote.h unix-stream-server.h
credential.h khash.h range-diff.c unpack-trees.c
csum-file.c kwset.c range-diff.h unpack-trees.h
csum-file.h kwset.h reachable.c upload-pack.c
ctype.c levenshtein.c reachable.h upload-pack.h
daemon.c levenshtein.h read-cache.c url.c
date.c LGPL-2.1 README.md url.h
date.h linear-assignment.c rebase.c urlmatch.c
decorate.c linear-assignment.h rebase.h urlmatch.h
decorate.h line-log.c rebase-interactive.c usage.c
delta.h line-log.h rebase-interactive.h userdiff.c
delta-islands.c line-range.c ref-filter.c userdiff.h
delta-islands.h line-range.h ref-filter.h utf8.c
detect-compiler list.h reflog.c utf8.h
diagnose.c list-objects.c reflog.h varint.c
diagnose.h list-objects-filter.c reflog-walk.c varint.h
diff.c list-objects-filter.h reflog-walk.h version.c
diffcore-break.c list-objects-filter-options.c refs versioncmp.c
diffcore-delta.c list-objects-filter-options.h refs.c version.h
diffcore.h list-objects.h refs.h walker.c
diffcore-order.c ll-merge.c refspec.c walker.h
diffcore-pickaxe.c ll-merge.h refspec.h wildmatch.c
diffcore-rename.c lockfile.c reftable wildmatch.h
diffcore-rotate.c lockfile.h RelNotes worktree.c
diff-delta.c log-tree.c remote.c worktree.h
diff.h log-tree.h remote-curl.c wrap-for-bin.sh
diff-lib.c ls-refs.c remote.h wrapper.c
diff-merges.c ls-refs.h replace-object.c write-or-die.c
diff-merges.h mailinfo.c replace-object.h ws.c
diff-no-index.c mailinfo.h repo-settings.c wt-status.c
dir.c mailmap.c repository.c wt-status.h
dir.h mailmap.h repository.h xdiff
dir-iterator.c Makefile rerere.c xdiff-interface.c
dir-iterator.h match-trees.c rerere.h xdiff-interface.h
Documentation mem-pool.c reset.c zlib.c
editor.c mem-pool.h reset.h
ek@apok:~/src/git ((3167b60e5b...)|BISECTING)$ view README.md
ek@apok:~/src/git ((3167b60e5b...)|BISECTING)$ view INSTALL
ek@apok:~/src/git ((3167b60e5b...)|BISECTING)$ ls ~/mygit
ls: cannot access '/home/ek/mygit': No such file or directory
ek@apok:~/src/git ((3167b60e5b...)|BISECTING)[2]$ ls ~
bin git-2.34.1.tar.xz git-2.45.2.tar.xz mygit.2.45.2.tar.xz src
git-2.34.1 git-2.45.2 mygit.2.34.1.tar.xz repos tmp
ek@apok:~/src/git ((3167b60e5b...)|BISECTING)$ make prefix="$HOME/mygit" -j5
GIT_VERSION = 2.39.3.3.g3167b60e5b
* new build flags
CC oss-fuzz/fuzz-commit-graph.o
CC oss-fuzz/fuzz-pack-headers.o
CC oss-fuzz/fuzz-pack-idx.o
CC daemon.o
CC common-main.o
* new link flags
CC abspath.o
CC add-interactive.o
CC add-patch.o
CC advice.o
CC alias.o
CC alloc.o
CC apply.o
CC archive-tar.o
CC archive-zip.o
CC archive.o
* new prefix flags
CC base85.o
CC bisect.o
CC blame.o
CC blob.o
CC bloom.o
CC branch.o
CC bulk-checkin.o
CC bundle-uri.o
CC bundle.o
CC cache-tree.o
CC cbtree.o
CC chdir-notify.o
CC checkout.o
CC chunk-format.o
CC color.o
CC column.o
CC combine-diff.o
CC commit-graph.o
CC commit-reach.o
CC commit.o
CC compat/nonblock.o
CC compat/obstack.o
CC compat/terminal.o
CC compat/zlib-uncompress2.o
CC config.o
CC connect.o
CC connected.o
CC convert.o
CC copy.o
CC credential.o
CC csum-file.o
CC ctype.o
CC date.o
CC decorate.o
CC delta-islands.o
CC diagnose.o
CC diff-delta.o
CC diff-merges.o
CC diff-lib.o
CC diff-no-index.o
CC diff.o
CC diffcore-break.o
CC diffcore-delta.o
CC diffcore-order.o
CC diffcore-pickaxe.o
CC diffcore-rename.o
CC diffcore-rotate.o
CC dir-iterator.o
CC dir.o
CC editor.o
CC entry.o
CC environment.o
CC ewah/bitmap.o
CC ewah/ewah_bitmap.o
CC ewah/ewah_io.o
CC ewah/ewah_rlw.o
CC exec-cmd.o
CC fetch-negotiator.o
CC fetch-pack.o
CC fmt-merge-msg.o
CC fsck.o
CC fsmonitor.o
CC fsmonitor-ipc.o
CC fsmonitor-settings.o
CC gettext.o
CC gpg-interface.o
CC graph.o
CC grep.o
CC hash-lookup.o
CC hashmap.o
GEN command-list.h
CC hex.o
CC hook.o
CC ident.o
CC json-writer.o
CC kwset.o
CC levenshtein.o
CC line-log.o
CC line-range.o
CC linear-assignment.o
CC list-objects-filter-options.o
CC list-objects-filter.o
CC list-objects.o
CC ll-merge.o
CC lockfile.o
CC log-tree.o
CC ls-refs.o
CC mailinfo.o
CC mailmap.o
CC match-trees.o
CC mem-pool.o
CC merge-blobs.o
CC merge-ort.o
CC merge-ort-wrappers.o
CC merge-recursive.o
CC merge.o
CC midx.o
CC name-hash.o
CC negotiator/default.o
CC negotiator/noop.o
CC negotiator/skipping.o
CC notes-cache.o
CC notes-merge.o
CC notes-utils.o
CC notes.o
CC object-file.o
CC object-name.o
CC object.o
CC oid-array.o
CC oidmap.o
CC oidset.o
CC oidtree.o
CC pack-bitmap-write.o
CC pack-bitmap.o
CC pack-check.o
CC pack-mtimes.o
CC pack-objects.o
CC pack-revindex.o
CC pack-write.o
CC packfile.o
CC pager.o
CC parallel-checkout.o
CC parse-options-cb.o
CC parse-options.o
CC patch-delta.o
CC patch-ids.o
CC path.o
CC pathspec.o
CC pkt-line.o
CC preload-index.o
CC pretty.o
CC prio-queue.o
CC progress.o
CC promisor-remote.o
CC prompt.o
CC protocol.o
CC protocol-caps.o
CC prune-packed.o
CC quote.o
CC range-diff.o
CC reachable.o
CC read-cache.o
CC rebase-interactive.o
CC rebase.o
CC ref-filter.o
CC reflog-walk.o
CC reflog.o
CC refs.o
CC refs/debug.o
CC refs/files-backend.o
CC refs/iterator.o
CC refs/packed-backend.o
CC refs/ref-cache.o
CC refspec.o
CC remote.o
CC replace-object.o
CC repo-settings.o
CC repository.o
CC rerere.o
CC reset.o
CC resolve-undo.o
CC revision.o
CC run-command.o
CC send-pack.o
CC sequencer.o
CC serve.o
CC server-info.o
CC setup.o
CC shallow.o
CC sideband.o
CC sigchain.o
CC sparse-index.o
CC split-index.o
CC stable-qsort.o
CC strbuf.o
CC streaming.o
CC string-list.o
CC strmap.o
CC strvec.o
CC sub-process.o
CC submodule-config.o
CC submodule.o
CC symlinks.o
CC tag.o
CC tempfile.o
CC thread-utils.o
CC tmp-objdir.o
CC trace.o
CC trace2.o
CC trace2/tr2_cfg.o
CC trace2/tr2_cmd_name.o
CC trace2/tr2_ctr.o
CC trace2/tr2_dst.o
CC trace2/tr2_sid.o
CC trace2/tr2_sysenv.o
CC trace2/tr2_tbuf.o
CC trace2/tr2_tgt_event.o
CC trace2/tr2_tgt_normal.o
CC trace2/tr2_tgt_perf.o
CC trace2/tr2_tls.o
CC trace2/tr2_tmr.o
CC trailer.o
CC transport-helper.o
CC transport.o
CC tree-diff.o
CC tree-walk.o
CC tree.o
CC unpack-trees.o
CC upload-pack.o
CC url.o
CC urlmatch.o
CC usage.o
CC userdiff.o
CC utf8.o
CC varint.o
CC versioncmp.o
CC walker.o
CC wildmatch.o
CC worktree.o
CC wrapper.o
CC write-or-die.o
CC ws.o
CC wt-status.o
CC xdiff-interface.o
CC zlib.o
CC unix-socket.o
CC unix-stream-server.o
CC compat/simple-ipc/ipc-shared.o
CC compat/simple-ipc/ipc-unix-socket.o
CC sha1dc_git.o
CC sha1dc/sha1.o
CC sha1dc/ubc_check.o
CC sha256/block/sha256.o
CC compat/linux/procinfo.o
CC compat/fopen.o
CC compat/strlcpy.o
CC compat/qsort_s.o
CC xdiff/xdiffi.o
CC xdiff/xemit.o
CC xdiff/xhistogram.o
CC xdiff/xmerge.o
CC xdiff/xpatience.o
CC xdiff/xprepare.o
CC xdiff/xutils.o
CC reftable/basics.o
CC reftable/error.o
CC reftable/block.o
CC reftable/blocksource.o
CC reftable/iter.o
CC reftable/publicbasics.o
CC reftable/merged.o
CC reftable/pq.o
CC reftable/reader.o
CC reftable/record.o
CC reftable/refname.o
CC reftable/generic.o
CC reftable/stack.o
CC reftable/tree.o
CC reftable/writer.o
CC http-backend.o
CC imap-send.o
CC http.o
CC sh-i18n--envsubst.o
CC shell.o
CC http-walker.o
CC http-fetch.o
CC http-push.o
CC remote-curl.o
* new script parameters
* new perl-specific parameters
* new Python interpreter location
GEN git-instaweb
CC git.o
CC builtin/add.o
CC builtin/am.o
CC builtin/annotate.o
CC builtin/apply.o
CC builtin/archive.o
CC builtin/bisect--helper.o
CC builtin/blame.o
CC builtin/branch.o
GEN hook-list.h
CC builtin/bundle.o
CC builtin/cat-file.o
CC builtin/check-attr.o
CC builtin/check-ignore.o
CC builtin/check-mailmap.o
CC builtin/check-ref-format.o
CC builtin/checkout--worker.o
CC builtin/checkout-index.o
CC builtin/checkout.o
CC builtin/clean.o
CC builtin/clone.o
CC builtin/column.o
CC builtin/commit-graph.o
CC builtin/commit-tree.o
CC builtin/commit.o
CC builtin/config.o
CC builtin/count-objects.o
CC builtin/credential-cache--daemon.o
CC builtin/credential-cache.o
CC builtin/credential-store.o
CC builtin/credential.o
CC builtin/describe.o
CC builtin/diagnose.o
CC builtin/diff-files.o
CC builtin/diff-index.o
CC builtin/diff-tree.o
CC builtin/diff.o
CC builtin/difftool.o
CC builtin/env--helper.o
CC builtin/fast-export.o
CC builtin/fast-import.o
CC builtin/fetch-pack.o
CC builtin/fetch.o
CC builtin/fmt-merge-msg.o
CC builtin/for-each-ref.o
CC builtin/for-each-repo.o
CC builtin/fsck.o
CC builtin/fsmonitor--daemon.o
CC builtin/gc.o
CC builtin/get-tar-commit-id.o
CC builtin/grep.o
CC builtin/hash-object.o
GEN config-list.h
CC builtin/hook.o
CC builtin/index-pack.o
CC builtin/init-db.o
CC builtin/interpret-trailers.o
CC builtin/log.o
CC builtin/ls-files.o
CC builtin/ls-remote.o
CC builtin/ls-tree.o
CC builtin/mailinfo.o
CC builtin/mailsplit.o
CC builtin/merge-base.o
CC builtin/merge-file.o
CC builtin/merge-index.o
CC builtin/merge-ours.o
CC builtin/merge-recursive.o
CC builtin/merge-tree.o
CC builtin/merge.o
CC builtin/mktag.o
CC builtin/mktree.o
CC builtin/multi-pack-index.o
CC builtin/mv.o
CC builtin/name-rev.o
CC builtin/notes.o
CC builtin/pack-objects.o
CC builtin/pack-redundant.o
CC builtin/pack-refs.o
CC builtin/patch-id.o
CC builtin/prune-packed.o
CC builtin/prune.o
CC builtin/pull.o
CC builtin/push.o
CC builtin/range-diff.o
CC builtin/read-tree.o
CC builtin/rebase.o
CC builtin/receive-pack.o
CC builtin/reflog.o
CC builtin/remote-ext.o
CC builtin/remote-fd.o
CC builtin/remote.o
CC builtin/repack.o
CC builtin/replace.o
CC builtin/rerere.o
CC builtin/reset.o
CC builtin/rev-list.o
CC builtin/rev-parse.o
CC builtin/revert.o
CC builtin/rm.o
CC builtin/send-pack.o
CC builtin/shortlog.o
CC builtin/show-branch.o
CC builtin/show-index.o
CC builtin/show-ref.o
CC builtin/sparse-checkout.o
CC builtin/stash.o
CC builtin/stripspace.o
CC builtin/submodule--helper.o
CC builtin/symbolic-ref.o
CC builtin/tag.o
CC builtin/unpack-file.o
CC builtin/unpack-objects.o
CC builtin/update-index.o
CC builtin/update-ref.o
CC builtin/update-server-info.o
CC builtin/upload-archive.o
CC builtin/upload-pack.o
CC builtin/var.o
CC builtin/verify-commit.o
CC builtin/verify-pack.o
CC builtin/verify-tag.o
CC builtin/worktree.o
CC builtin/write-tree.o
GEN git-mergetool--lib
GEN git-sh-i18n
GEN git-sh-setup
CC scalar.o
CC attr.o
CC help.o
CC version.o
AR xdiff/lib.a
AR reftable/libreftable.a
GEN git-bisect
GEN git-difftool--helper
GEN git-filter-branch
GEN git-merge-octopus
GEN git-merge-one-file
GEN git-merge-resolve
GEN git-mergetool
GEN git-quiltimport
GEN git-request-pull
GEN git-submodule
GEN git-web--browse
GEN GIT-PERL-HEADER
GEN git-p4
CC builtin/bugreport.o
CC builtin/help.o
GEN git-add--interactive
GEN git-archimport
GEN git-cvsexportcommit
GEN git-cvsimport
GEN git-cvsserver
GEN git-send-email
GEN git-svn
AR libgit.a
LINK git-daemon
LINK git-http-backend
LINK git-imap-send
LINK git-sh-i18n--envsubst
LINK git-shell
LINK git-http-fetch
LINK git-http-push
LINK git-remote-http
LINK git
LINK scalar
LN/CP git-remote-https
LN/CP git-remote-ftp
LN/CP git-remote-ftps
BUILTIN git-add
BUILTIN git-am
BUILTIN git-apply
BUILTIN git-annotate
BUILTIN git-bisect--helper
BUILTIN git-archive
BUILTIN git-blame
BUILTIN git-branch
BUILTIN git-bugreport
BUILTIN git-bundle
BUILTIN git-cat-file
BUILTIN git-check-attr
BUILTIN git-check-ignore
BUILTIN git-check-mailmap
BUILTIN git-check-ref-format
BUILTIN git-checkout--worker
BUILTIN git-checkout-index
BUILTIN git-checkout
BUILTIN git-clean
BUILTIN git-clone
BUILTIN git-column
BUILTIN git-commit-graph
BUILTIN git-commit-tree
BUILTIN git-commit
BUILTIN git-count-objects
BUILTIN git-config
BUILTIN git-credential-cache--daemon
BUILTIN git-credential-cache
BUILTIN git-credential-store
BUILTIN git-credential
BUILTIN git-describe
BUILTIN git-diagnose
BUILTIN git-diff-files
BUILTIN git-diff-index
BUILTIN git-diff-tree
BUILTIN git-diff
BUILTIN git-difftool
BUILTIN git-env--helper
BUILTIN git-fast-export
BUILTIN git-fast-import
BUILTIN git-fetch-pack
BUILTIN git-fetch
BUILTIN git-fmt-merge-msg
BUILTIN git-for-each-ref
BUILTIN git-for-each-repo
BUILTIN git-fsck
BUILTIN git-fsmonitor--daemon
BUILTIN git-gc
BUILTIN git-get-tar-commit-id
BUILTIN git-grep
BUILTIN git-hash-object
BUILTIN git-help
BUILTIN git-hook
BUILTIN git-index-pack
BUILTIN git-init-db
BUILTIN git-interpret-trailers
BUILTIN git-log
BUILTIN git-ls-files
BUILTIN git-ls-remote
BUILTIN git-ls-tree
BUILTIN git-mailinfo
BUILTIN git-mailsplit
BUILTIN git-merge-base
BUILTIN git-merge-file
BUILTIN git-merge-index
BUILTIN git-merge-ours
BUILTIN git-merge-recursive
BUILTIN git-merge-tree
BUILTIN git-merge
BUILTIN git-mktag
BUILTIN git-mktree
BUILTIN git-multi-pack-index
BUILTIN git-mv
BUILTIN git-name-rev
BUILTIN git-notes
BUILTIN git-pack-objects
BUILTIN git-pack-redundant
BUILTIN git-pack-refs
BUILTIN git-patch-id
BUILTIN git-prune
BUILTIN git-prune-packed
BUILTIN git-pull
BUILTIN git-push
BUILTIN git-range-diff
BUILTIN git-read-tree
BUILTIN git-rebase
BUILTIN git-receive-pack
BUILTIN git-reflog
BUILTIN git-remote-ext
BUILTIN git-remote-fd
BUILTIN git-remote
BUILTIN git-repack
BUILTIN git-replace
BUILTIN git-rerere
BUILTIN git-reset
BUILTIN git-rev-list
BUILTIN git-rev-parse
BUILTIN git-revert
BUILTIN git-send-pack
BUILTIN git-rm
BUILTIN git-shortlog
BUILTIN git-show-branch
BUILTIN git-show-ref
BUILTIN git-show-index
BUILTIN git-sparse-checkout
BUILTIN git-stash
BUILTIN git-stripspace
BUILTIN git-submodule--helper
BUILTIN git-symbolic-ref
BUILTIN git-tag
BUILTIN git-unpack-file
BUILTIN git-unpack-objects
BUILTIN git-update-index
BUILTIN git-update-ref
BUILTIN git-update-server-info
BUILTIN git-upload-archive
BUILTIN git-upload-pack
BUILTIN git-var
BUILTIN git-verify-commit
BUILTIN git-verify-tag
BUILTIN git-verify-pack
BUILTIN git-worktree
BUILTIN git-write-tree
BUILTIN git-cherry
BUILTIN git-cherry-pick
BUILTIN git-format-patch
BUILTIN git-fsck-objects
BUILTIN git-init
BUILTIN git-maintenance
BUILTIN git-merge-subtree
BUILTIN git-restore
BUILTIN git-stage
BUILTIN git-show
BUILTIN git-status
BUILTIN git-switch
BUILTIN git-version
BUILTIN git-whatchanged
SUBDIR git-gui
GITGUI_VERSION = 0.21.GITGUI
* new locations or Tcl/Tk interpreter
MSGFMT po/bg.msg MSGFMT po/de.msg MSGFMT po/fr.msg MSGFMT po/el.msg MSGFMT po/hu.msg 520 translated.
579 translated.
381 translated, 4 fuzzy, 6 untranslated.
MSGFMT po/it.msg MSGFMT po/ja.msg 565 translated.
514 translated.
MSGFMT po/nb.msg MSGFMT po/pt_br.msg MSGFMT po/pt_pt.msg 474 translated, 39 untranslated.
546 translated, 1 untranslated.
520 translated.
MSGFMT po/ru.msg MSGFMT po/sv.msg 519 translated, 1 untranslated.
MSGFMT po/vi.msg MSGFMT po/zh_cn.msg 550 translated.
GEN git-gui
547 translated.
366 translated, 7 fuzzy, 17 untranslated.
543 translated.
INDEX lib/
579 translated.
SUBDIR gitk-git
Generating catalog po/bg.msg
msgfmt --statistics --tcl po/bg.po -l bg -d po/
Generating catalog po/ca.msg
Generating catalog po/de.msg
* new Tcl/Tk interpreter location
msgfmt --statistics --tcl po/ca.po -l ca -d po/
msgfmt --statistics --tcl po/de.po -l de -d po/
Generating catalog po/es.msg
msgfmt --statistics --tcl po/es.po -l es -d po/
Generating catalog po/fr.msg
msgfmt --statistics --tcl po/fr.po -l fr -d po/
317 translated messages.
307 translated messages.
307 translated messages.
Generating catalog po/it.msg
184 translated messages, 46 fuzzy translations, 77 untranslated messages.
Generating catalog po/hu.msg
msgfmt --statistics --tcl po/hu.po -l hu -d po/
msgfmt --statistics --tcl po/it.po -l it -d po/
Generating catalog po/ja.msg
msgfmt --statistics --tcl po/ja.po -l ja -d po/
Generating catalog po/pt_br.msg
311 translated messages.
msgfmt --statistics --tcl po/pt_br.po -l pt_br -d po/
Generating catalog po/pt_pt.msg
msgfmt --statistics --tcl po/pt_pt.po -l pt_pt -d po/
277 translated messages, 18 fuzzy translations, 12 untranslated messages.
274 translated messages, 17 fuzzy translations, 16 untranslated messages.
311 translated messages.
Generating catalog po/ru.msg
msgfmt --statistics --tcl po/ru.po -l ru -d po/
Generating catalog po/sv.msg
msgfmt --statistics --tcl po/sv.po -l sv -d po/
279 translated messages, 16 fuzzy translations, 12 untranslated messages.
Generating catalog po/vi.msg
msgfmt --statistics --tcl po/vi.po -l vi -d po/
Generating catalog po/zh_cn.msg
msgfmt --statistics --tcl po/zh_cn.po -l zh_cn -d po/
311 translated messages.
GEN gitk-wish
311 translated messages.
317 translated messages.
307 translated messages.
317 translated messages.
SUBDIR templates
MKDIR -p po/build/locale/bg/LC_MESSAGES
MSGFMT po/build/locale/bg/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/ca/LC_MESSAGES
MSGFMT po/build/locale/ca/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/de/LC_MESSAGES
MSGFMT po/build/locale/de/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/el/LC_MESSAGES
MSGFMT po/build/locale/el/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/es/LC_MESSAGES
MSGFMT po/build/locale/es/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/fr/LC_MESSAGES
MSGFMT po/build/locale/fr/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/id/LC_MESSAGES
MKDIR -p po/build/locale/is/LC_MESSAGES
MSGFMT po/build/locale/id/LC_MESSAGES/git.mo
MSGFMT po/build/locale/is/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/it/LC_MESSAGES
MSGFMT po/build/locale/it/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/ko/LC_MESSAGES
MSGFMT po/build/locale/ko/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/pl/LC_MESSAGES
MSGFMT po/build/locale/pl/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/pt_PT/LC_MESSAGES
MSGFMT po/build/locale/pt_PT/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/ru/LC_MESSAGES
MSGFMT po/build/locale/ru/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/sv/LC_MESSAGES
MSGFMT po/build/locale/sv/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/tr/LC_MESSAGES
MSGFMT po/build/locale/tr/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/vi/LC_MESSAGES
MSGFMT po/build/locale/vi/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/zh_CN/LC_MESSAGES
MSGFMT po/build/locale/zh_CN/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/zh_TW/LC_MESSAGES
MSGFMT po/build/locale/zh_TW/LC_MESSAGES/git.mo
MKDIR -p perl/build/lib
MKDIR -p perl/build/lib/Git
GEN perl/build/lib/Git.pm
GEN perl/build/lib/Git/IndexInfo.pm
GEN perl/build/lib/Git/LoadCPAN.pm
GEN perl/build/lib/Git/Packet.pm
GEN perl/build/lib/Git/I18N.pm
GEN perl/build/lib/Git/SVN.pm
MKDIR -p perl/build/lib/Git/LoadCPAN
GEN perl/build/lib/Git/LoadCPAN/Error.pm
GEN perl/build/lib/Git/SVN/Fetcher.pm
MKDIR -p perl/build/lib/Git/SVN
GEN perl/build/lib/Git/SVN/GlobSpec.pm
GEN perl/build/lib/Git/SVN/Log.pm
GEN perl/build/lib/Git/SVN/Editor.pm
GEN perl/build/lib/Git/SVN/Migration.pm
GEN perl/build/lib/Git/SVN/Prompt.pm
GEN perl/build/lib/Git/SVN/Ra.pm
GEN perl/build/lib/Git/SVN/Utils.pm
MKDIR -p perl/build/lib/Git/LoadCPAN/Mail
GEN perl/build/lib/Git/LoadCPAN/Mail/Address.pm
MKDIR -p perl/build/lib/Git/SVN/Memoize
GEN perl/build/lib/Git/SVN/Memoize/YAML.pm
MKDIR -p perl/build/lib/FromCPAN
GEN perl/build/lib/FromCPAN/Error.pm
MKDIR -p perl/build/lib/FromCPAN/Mail
GEN perl/build/lib/FromCPAN/Mail/Address.pm
CC t/helper/test-fake-ssh.o
CC reftable/basics_test.o
CC reftable/dump.o
CC reftable/block_test.o
CC reftable/merged_test.o
CC reftable/pq_test.o
CC reftable/record_test.o
CC reftable/readwrite_test.o
CC reftable/refname_test.o
CC reftable/stack_test.o
CC reftable/test_framework.o
CC reftable/tree_test.o
CC t/helper/test-tool.o
CC t/helper/test-advise.o
CC t/helper/test-bitmap.o
CC t/helper/test-bloom.o
CC t/helper/test-bundle-uri.o
CC t/helper/test-cache-tree.o
CC t/helper/test-chmtime.o
CC t/helper/test-config.o
CC t/helper/test-crontab.o
CC t/helper/test-csprng.o
CC t/helper/test-ctype.o
CC t/helper/test-date.o
CC t/helper/test-delta.o
CC t/helper/test-dir-iterator.o
CC t/helper/test-drop-caches.o
CC t/helper/test-dump-cache-tree.o
CC t/helper/test-dump-fsmonitor.o
CC t/helper/test-dump-split-index.o
CC t/helper/test-dump-untracked-cache.o
CC t/helper/test-example-decorate.o
CC t/helper/test-fast-rebase.o
CC t/helper/test-fsmonitor-client.o
CC t/helper/test-genrandom.o
CC t/helper/test-genzeros.o
CC t/helper/test-getcwd.o
CC t/helper/test-hash-speed.o
CC t/helper/test-hash.o
CC t/helper/test-hashmap.o
CC t/helper/test-hexdump.o
CC t/helper/test-index-version.o
CC t/helper/test-json-writer.o
CC t/helper/test-lazy-init-name-hash.o
CC t/helper/test-match-trees.o
CC t/helper/test-mergesort.o
CC t/helper/test-mktemp.o
CC t/helper/test-oid-array.o
CC t/helper/test-oidmap.o
CC t/helper/test-oidtree.o
CC t/helper/test-online-cpus.o
CC t/helper/test-pack-mtimes.o
CC t/helper/test-parse-options.o
CC t/helper/test-parse-pathspec-file.o
CC t/helper/test-partial-clone.o
CC t/helper/test-path-utils.o
CC t/helper/test-pcre2-config.o
CC t/helper/test-pkt-line.o
CC t/helper/test-prio-queue.o
CC t/helper/test-proc-receive.o
CC t/helper/test-progress.o
CC t/helper/test-reach.o
CC t/helper/test-read-cache.o
CC t/helper/test-read-graph.o
CC t/helper/test-read-midx.o
CC t/helper/test-ref-store.o
CC t/helper/test-reftable.o
CC t/helper/test-regex.o
CC t/helper/test-rot13-filter.o
CC t/helper/test-repository.o
CC t/helper/test-revision-walking.o
CC t/helper/test-run-command.o
CC t/helper/test-scrap-cache-tree.o
CC t/helper/test-serve-v2.o
CC t/helper/test-sha1.o
CC t/helper/test-sha256.o
CC t/helper/test-sigchain.o
CC t/helper/test-simple-ipc.o
CC t/helper/test-strcmp-offset.o
CC t/helper/test-string-list.o
CC t/helper/test-submodule-config.o
CC t/helper/test-submodule-nested-repo-config.o
CC t/helper/test-submodule.o
CC t/helper/test-subprocess.o
CC t/helper/test-trace2.o
CC t/helper/test-urlmatch-normalization.o
CC t/helper/test-userdiff.o
CC t/helper/test-wildmatch.o
CC t/helper/test-windows-named-pipe.o
CC t/helper/test-write-cache.o
CC t/helper/test-xml-encode.o
MKDIR -p bin-wrappers
GEN bin-wrappers/git
GEN bin-wrappers/scalar
GEN bin-wrappers/git-receive-pack
GEN bin-wrappers/git-shell
GEN bin-wrappers/git-upload-archive
GEN bin-wrappers/git-upload-pack
GEN bin-wrappers/git-cvsserver
GEN bin-wrappers/test-fake-ssh
GEN bin-wrappers/test-tool
AR reftable/libreftable_test.a
LINK t/helper/test-fake-ssh
LINK t/helper/test-tool
GEN gitweb/static/gitweb.js
GEN gitweb/gitweb.cgi
ek@apok:~/src/git ((3167b60e5b...)|BISECTING)$ make prefix="$HOME/mygit" install
SUBDIR git-gui
SUBDIR gitk-git
SUBDIR templates
install -d -m 755 '/home/ek/mygit/share/gitweb'
install -m 755 gitweb/gitweb.cgi '/home/ek/mygit/share/gitweb'
install -d -m 755 '/home/ek/mygit/share/gitweb/static'
install -m 644 gitweb/static/gitweb.js gitweb/static/gitweb.css gitweb/static/git-logo.png gitweb/static/git-favicon.png \
'/home/ek/mygit/share/gitweb/static'
install -d -m 755 '/home/ek/mygit/bin'
install -d -m 755 '/home/ek/mygit/libexec/git-core'
install git-daemon git-http-backend git-imap-send git-sh-i18n--envsubst git-shell git-http-fetch git-http-push git-remote-http git-remote-https git-remote-ftp git-remote-ftps '/home/ek/mygit/libexec/git-core'
install git-bisect git-difftool--helper git-filter-branch git-merge-octopus git-merge-one-file git-merge-resolve git-mergetool git-quiltimport git-request-pull git-submodule git-web--browse git-add--interactive git-archimport git-cvsexportcommit git-cvsimport git-cvsserver git-send-email git-svn git-p4 git-instaweb '/home/ek/mygit/libexec/git-core'
install -m 644 git-mergetool--lib git-sh-i18n git-sh-setup '/home/ek/mygit/libexec/git-core'
install git scalar git-receive-pack git-shell git-upload-archive git-upload-pack '/home/ek/mygit/bin'
install git-cvsserver '/home/ek/mygit/bin'
make -C templates DESTDIR='' install
make[1]: Entering directory '/home/ek/src/git/templates'
install -d -m 755 '/home/ek/mygit/share/git-core/templates'
(cd blt && tar cf - .) | \
(cd '/home/ek/mygit/share/git-core/templates' && umask 022 && tar xof -)
make[1]: Leaving directory '/home/ek/src/git/templates'
install -d -m 755 '/home/ek/mygit/libexec/git-core/mergetools'
install -m 644 mergetools/* '/home/ek/mygit/libexec/git-core/mergetools'
install -d -m 755 '/home/ek/mygit/share/locale'
(cd po/build/locale && tar cf - .) | \
(cd '/home/ek/mygit/share/locale' && umask 022 && tar xof -)
install -d -m 755 '/home/ek/mygit/share/perl5'
(cd perl/build/lib && tar cf - .) | \
(cd '/home/ek/mygit/share/perl5' && umask 022 && tar xof -)
make -C gitk-git install
make[1]: Entering directory '/home/ek/src/git/gitk-git'
install -d -m 755 '/home/ek/mygit/bin'
install -m 755 gitk-wish '/home/ek/mygit/bin'/gitk
install -d -m 755 '/home/ek/mygit/share/gitk/lib/msgs'
install -m 644 po/bg.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/ca.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/de.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/es.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/fr.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/hu.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/it.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/ja.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/pt_br.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/pt_pt.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/ru.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/sv.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/vi.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/zh_cn.msg '/home/ek/mygit/share/gitk/lib/msgs' && true
make[1]: Leaving directory '/home/ek/src/git/gitk-git'
make -C git-gui gitexecdir='/home/ek/mygit/libexec/git-core' install
make[1]: Entering directory '/home/ek/src/git/git-gui'
DEST /home/ek/mygit/libexec/git-core
INSTALL 755 git-gui
INSTALL 755 git-gui--askpass
LINK git-citool -> git-gui
DEST /home/ek/mygit/share/git-gui/lib
INSTALL 644 tclIndex
INSTALL 644 about.tcl
INSTALL 644 blame.tcl
INSTALL 644 branch_checkout.tcl
INSTALL 644 branch_create.tcl
INSTALL 644 branch_delete.tcl
INSTALL 644 branch_rename.tcl
INSTALL 644 branch.tcl
INSTALL 644 browser.tcl
INSTALL 644 checkout_op.tcl
INSTALL 644 choose_font.tcl
INSTALL 644 choose_repository.tcl
INSTALL 644 choose_rev.tcl
INSTALL 644 chord.tcl
INSTALL 644 class.tcl
INSTALL 644 commit.tcl
INSTALL 644 console.tcl
INSTALL 644 database.tcl
INSTALL 644 date.tcl
INSTALL 644 diff.tcl
INSTALL 644 encoding.tcl
INSTALL 644 error.tcl
INSTALL 644 index.tcl
INSTALL 644 line.tcl
INSTALL 644 logo.tcl
INSTALL 644 merge.tcl
INSTALL 644 mergetool.tcl
INSTALL 644 option.tcl
INSTALL 644 remote_add.tcl
INSTALL 644 remote_branch_delete.tcl
INSTALL 644 remote.tcl
INSTALL 644 search.tcl
INSTALL 644 shortcut.tcl
INSTALL 644 spellcheck.tcl
INSTALL 644 sshkey.tcl
INSTALL 644 status_bar.tcl
INSTALL 644 themed.tcl
INSTALL 644 tools_dlg.tcl
INSTALL 644 tools.tcl
INSTALL 644 transport.tcl
INSTALL 644 win32.tcl
INSTALL 644 git-gui.ico
INSTALL 644 win32_shortcut.js
DEST /home/ek/mygit/share/git-gui/lib/msgs
INSTALL 644 bg.msg
INSTALL 644 de.msg
INSTALL 644 el.msg
INSTALL 644 fr.msg
INSTALL 644 hu.msg
INSTALL 644 it.msg
INSTALL 644 ja.msg
INSTALL 644 nb.msg
INSTALL 644 pt_br.msg
INSTALL 644 pt_pt.msg
INSTALL 644 ru.msg
INSTALL 644 sv.msg
INSTALL 644 vi.msg
INSTALL 644 zh_cn.msg
make[1]: Leaving directory '/home/ek/src/git/git-gui'
bindir=$(cd '/home/ek/mygit/bin' && pwd) && \
execdir=$(cd '/home/ek/mygit/libexec/git-core' && pwd) && \
destdir_from_execdir_SQ=$(echo 'libexec/git-core' | sed -e 's|[^/][^/]*|..|g') && \
{ test "$bindir/" = "$execdir/" || \
for p in git scalar git-shell git-cvsserver; do \
rm -f "$execdir/$p" && \
test -n "" && \
ln -s "$destdir_from_execdir_SQ/bin/$p" "$execdir/$p" || \
{ test -z "" && \
ln "$bindir/$p" "$execdir/$p" 2>/dev/null || \
cp "$bindir/$p" "$execdir/$p" || exit; } \
done; \
} && \
for p in git-receive-pack git-upload-archive git-upload-pack; do \
rm -f "$bindir/$p" && \
test -n "" && \
ln -s "git" "$bindir/$p" || \
{ test -z "" && \
ln "$bindir/git" "$bindir/$p" 2>/dev/null || \
ln -s "git" "$bindir/$p" 2>/dev/null || \
cp "$bindir/git" "$bindir/$p" || exit; }; \
done && \
for p in git-add git-am git-annotate git-apply git-archive git-bisect--helper git-blame git-branch git-bugreport git-bundle git-cat-file git-check-attr git-check-ignore git-check-mailmap git-check-ref-format git-checkout--worker git-checkout-index git-checkout git-clean git-clone git-column git-commit-graph git-commit-tree git-commit git-config git-count-objects git-credential-cache--daemon git-credential-cache git-credential-store git-credential git-describe git-diagnose git-diff-files git-diff-index git-diff-tree git-diff git-difftool git-env--helper git-fast-export git-fast-import git-fetch-pack git-fetch git-fmt-merge-msg git-for-each-ref git-for-each-repo git-fsck git-fsmonitor--daemon git-gc git-get-tar-commit-id git-grep git-hash-object git-help git-hook git-index-pack git-init-db git-interpret-trailers git-log git-ls-files git-ls-remote git-ls-tree git-mailinfo git-mailsplit git-merge-base git-merge-file git-merge-index git-merge-ours git-merge-recursive git-merge-tree git-merge git-mktag git-mktree git-multi-pack-index git-mv git-name-rev git-notes git-pack-objects git-pack-redundant git-pack-refs git-patch-id git-prune-packed git-prune git-pull git-push git-range-diff git-read-tree git-rebase git-receive-pack git-reflog git-remote-ext git-remote-fd git-remote git-repack git-replace git-rerere git-reset git-rev-list git-rev-parse git-revert git-rm git-send-pack git-shortlog git-show-branch git-show-index git-show-ref git-sparse-checkout git-stash git-stripspace git-submodule--helper git-symbolic-ref git-tag git-unpack-file git-unpack-objects git-update-index git-update-ref git-update-server-info git-upload-archive git-upload-pack git-var git-verify-commit git-verify-pack git-verify-tag git-worktree git-write-tree git-cherry git-cherry-pick git-format-patch git-fsck-objects git-init git-maintenance git-merge-subtree git-restore git-show git-stage git-status git-switch git-version git-whatchanged; do \
rm -f "$execdir/$p" && \
if test -z ""; \
then \
test -n "" && \
ln -s "$destdir_from_execdir_SQ/bin/git" "$execdir/$p" || \
{ test -z "" && \
ln "$execdir/git" "$execdir/$p" 2>/dev/null || \
ln -s "git" "$execdir/$p" 2>/dev/null || \
cp "$execdir/git" "$execdir/$p" || exit; }; \
fi \
done && \
remote_curl_aliases="git-remote-https git-remote-ftp git-remote-ftps" && \
for p in $remote_curl_aliases; do \
rm -f "$execdir/$p" && \
test -n "" && \
ln -s "git-remote-http" "$execdir/$p" || \
{ test -z "" && \
ln "$execdir/git-remote-http" "$execdir/$p" 2>/dev/null || \
ln -s "git-remote-http" "$execdir/$p" 2>/dev/null || \
cp "$execdir/git-remote-http" "$execdir/$p" || exit; } \
done
ek@apok:~/src/git ((3167b60e5b...)|BISECTING)$ pushd ~/tmp
~/tmp ~/src/git
ek@apok:~/tmp$ ls
example-submodule example-superproject has-nested-submodule hello-world
ek@apok:~/tmp$ rm -rf has-nested-submodule/
ek@apok:~/tmp$ PATH="$HOME/git-2.45.2/bin:$PATH" GIT_SSH_COMMAND='{ pid="$(ps -o ppid:1= -p "$$")"; ps -o pid:1=,cmd= -p
"$pid"; awk -v RS=\\0 "/^GIT_CONFIG/ { print \" \" \$0 }" "/proc/$pid/environ"; } 1>&2; ssh' GIT_CONFIG_COUNT=1 GIT_CONFIG_KEY_0=foo.bar GIT_CONFIG_VALUE_0=baz git -c prq.stu=xyz clone --recurse-submodules git@github.com:EliahKagan/has-
nested-submodule.git^C
ek@apok:~/tmp[130]$ PATH="$HOME/mygit/bin:$PATH" GIT_SSH_COMMAND='{ pid="$(ps -o ppid:1= -p "$$")"; ps -o pid:1=,cmd= -p "$pid"; awk -v RS=\\0 "/^GIT_CONFIG/ { print \" \" \$0 }" "/proc/$pid/environ"; } 1>&2; ssh' GIT_CONFIG_COUNT=1 GIT_CONFIG_KEY_0=foo.bar GIT_CONFIG_VALUE_0=baz git clone --recurse-submodules git@github.com:EliahKagan/has-nested-submodule.git
Cloning into 'has-nested-submodule'...
1036645 git clone --recurse-submodules git@github.com:EliahKagan/has-nested-submodule.git
GIT_CONFIG_COUNT=1
GIT_CONFIG_KEY_0=foo.bar
GIT_CONFIG_VALUE_0=baz
remote: Enumerating objects: 4, done.
remote: Counting objects: 100% (4/4), done.
remote: Compressing objects: 100% (4/4), done.
remote: Total 4 (delta 0), reused 4 (delta 0), pack-reused 0
Receiving objects: 100% (4/4), done.
Submodule 'has-submodule' (git@github.com:EliahKagan/has-submodule.git) registered for path 'has-submodule'
Cloning into '/home/ek/tmp/has-nested-submodule/has-submodule'...
1036686 /home/ek/mygit/libexec/git-core/git clone --no-checkout --progress --separate-git-dir /home/ek/tmp/has-nested-submodule/.git/modules/has-submodule --no-single-branch -- git@github.com:EliahKagan/has-submodule.git /home/ek/tmp/has-nested-submodule/has-submodule
GIT_CONFIG_COUNT=1
GIT_CONFIG_KEY_0=foo.bar
GIT_CONFIG_VALUE_0=baz
remote: Enumerating objects: 4, done.
remote: Counting objects: 100% (4/4), done.
remote: Compressing objects: 100% (4/4), done.
remote: Total 4 (delta 0), reused 4 (delta 0), pack-reused 0
Receiving objects: 100% (4/4), done.
Submodule path 'has-submodule': checked out '8de4a40d782ddfd338f2ada312714d60541c6f80'
Submodule 'trivial' (git@github.com:EliahKagan/trivial.git) registered for path 'has-submodule/trivial'
Cloning into '/home/ek/tmp/has-nested-submodule/has-submodule/trivial'...
1036705 /home/ek/mygit/libexec/git-core/git clone --no-checkout --progress --separate-git-dir /home/ek/tmp/has-nested-submodule/.git/modules/has-submodule/modules/trivial --no-single-branch -- git@github.com:EliahKagan/trivial.git /home/ek/tmp/has-nested-submodule/has-submodule/trivial
GIT_CONFIG_COUNT=1
GIT_CONFIG_KEY_0=foo.bar
GIT_CONFIG_VALUE_0=baz
remote: Enumerating objects: 3, done.
remote: Counting objects: 100% (3/3), done.
remote: Compressing objects: 100% (2/2), done.
remote: Total 3 (delta 0), reused 3 (delta 0), pack-reused 0
Receiving objects: 100% (3/3), done.
Submodule path 'has-submodule/trivial': checked out '656a18dc1e48e035a05a72011a62bca5f41fa07e'
ek@apok:~/tmp$ rm -rf has-nested-submodule/
ek@apok:~/tmp$ popd
~/src/git
ek@apok:~/src/git ((3167b60e5b...)|BISECTING)$ ls ~/mygit
bin libexec share
ek@apok:~/src/git ((3167b60e5b...)|BISECTING)$ git bisect new
Bisecting: 2030 revisions left to test after this (roughly 11 steps)
[28c2a3599730cca72c587bec7a9a72705635d992] Merge branch 'jy/gitweb-xhtml5'
ek@apok:~/src/git ((28c2a35997...) %|BISECTING)$ gix clean -xde
removing .depend/ (🗑️)
removing GIT-BUILD-OPTIONS (🗑️)
removing GIT-CFLAGS (🗑️)
removing GIT-LDFLAGS (🗑️)
removing GIT-PERL-DEFINES (🗑️)
removing GIT-PERL-HEADER (🗑️)
removing GIT-PREFIX (🗑️)
removing GIT-PYTHON-VARS (🗑️)
removing GIT-SCRIPT-DEFINES (🗑️)
removing GIT-USER-AGENT (🗑️)
removing GIT-VERSION-FILE (🗑️)
removing abspath.o (🗑️)
removing add-interactive.o (🗑️)
removing add-patch.o (🗑️)
removing advice.o (🗑️)
removing alias.o (🗑️)
removing alloc.o (🗑️)
removing apply.o (🗑️)
removing archive-tar.o (🗑️)
removing archive-zip.o (🗑️)
removing archive.o (🗑️)
removing attr.o (🗑️)
removing base85.o (🗑️)
removing bin-wrappers/ (🗑️)
removing bisect.o (🗑️)
removing blame.o (🗑️)
removing blob.o (🗑️)
removing bloom.o (🗑️)
removing branch.o (🗑️)
removing builtin/.depend/ (🗑️)
removing builtin/add.o (🗑️)
removing builtin/am.o (🗑️)
removing builtin/annotate.o (🗑️)
removing builtin/apply.o (🗑️)
removing builtin/archive.o (🗑️)
removing builtin/bisect--helper.o (🗑️)
removing builtin/blame.o (🗑️)
removing builtin/branch.o (🗑️)
removing builtin/bugreport.o (🗑️)
removing builtin/bundle.o (🗑️)
removing builtin/cat-file.o (🗑️)
removing builtin/check-attr.o (🗑️)
removing builtin/check-ignore.o (🗑️)
removing builtin/check-mailmap.o (🗑️)
removing builtin/check-ref-format.o (🗑️)
removing builtin/checkout--worker.o (🗑️)
removing builtin/checkout-index.o (🗑️)
removing builtin/checkout.o (🗑️)
removing builtin/clean.o (🗑️)
removing builtin/clone.o (🗑️)
removing builtin/column.o (🗑️)
removing builtin/commit-graph.o (🗑️)
removing builtin/commit-tree.o (🗑️)
removing builtin/commit.o (🗑️)
removing builtin/config.o (🗑️)
removing builtin/count-objects.o (🗑️)
removing builtin/credential-cache--daemon.o (🗑️)
removing builtin/credential-cache.o (🗑️)
removing builtin/credential-store.o (🗑️)
removing builtin/credential.o (🗑️)
removing builtin/describe.o (🗑️)
removing builtin/diagnose.o (🗑️)
removing builtin/diff-files.o (🗑️)
removing builtin/diff-index.o (🗑️)
removing builtin/diff-tree.o (🗑️)
removing builtin/diff.o (🗑️)
removing builtin/difftool.o (🗑️)
removing builtin/env--helper.o (🗑️)
removing builtin/fast-export.o (🗑️)
removing builtin/fast-import.o (🗑️)
removing builtin/fetch-pack.o (🗑️)
removing builtin/fetch.o (🗑️)
removing builtin/fmt-merge-msg.o (🗑️)
removing builtin/for-each-ref.o (🗑️)
removing builtin/for-each-repo.o (🗑️)
removing builtin/fsck.o (🗑️)
removing builtin/fsmonitor--daemon.o (🗑️)
removing builtin/gc.o (🗑️)
removing builtin/get-tar-commit-id.o (🗑️)
removing builtin/grep.o (🗑️)
removing builtin/hash-object.o (🗑️)
removing builtin/help.o (🗑️)
removing builtin/hook.o (🗑️)
removing builtin/index-pack.o (🗑️)
removing builtin/init-db.o (🗑️)
removing builtin/interpret-trailers.o (🗑️)
removing builtin/log.o (🗑️)
removing builtin/ls-files.o (🗑️)
removing builtin/ls-remote.o (🗑️)
removing builtin/ls-tree.o (🗑️)
removing builtin/mailinfo.o (🗑️)
removing builtin/mailsplit.o (🗑️)
removing builtin/merge-base.o (🗑️)
removing builtin/merge-file.o (🗑️)
removing builtin/merge-index.o (🗑️)
removing builtin/merge-ours.o (🗑️)
removing builtin/merge-recursive.o (🗑️)
removing builtin/merge-tree.o (🗑️)
removing builtin/merge.o (🗑️)
removing builtin/mktag.o (🗑️)
removing builtin/mktree.o (🗑️)
removing builtin/multi-pack-index.o (🗑️)
removing builtin/mv.o (🗑️)
removing builtin/name-rev.o (🗑️)
removing builtin/notes.o (🗑️)
removing builtin/pack-objects.o (🗑️)
removing builtin/pack-redundant.o (🗑️)
removing builtin/pack-refs.o (🗑️)
removing builtin/patch-id.o (🗑️)
removing builtin/prune-packed.o (🗑️)
removing builtin/prune.o (🗑️)
removing builtin/pull.o (🗑️)
removing builtin/push.o (🗑️)
removing builtin/range-diff.o (🗑️)
removing builtin/read-tree.o (🗑️)
removing builtin/rebase.o (🗑️)
removing builtin/receive-pack.o (🗑️)
removing builtin/reflog.o (🗑️)
removing builtin/remote-ext.o (🗑️)
removing builtin/remote-fd.o (🗑️)
removing builtin/remote.o (🗑️)
removing builtin/repack.o (🗑️)
removing builtin/replace.o (🗑️)
removing builtin/rerere.o (🗑️)
removing builtin/reset.o (🗑️)
removing builtin/rev-list.o (🗑️)
removing builtin/rev-parse.o (🗑️)
removing builtin/revert.o (🗑️)
removing builtin/rm.o (🗑️)
removing builtin/send-pack.o (🗑️)
removing builtin/shortlog.o (🗑️)
removing builtin/show-branch.o (🗑️)
removing builtin/show-index.o (🗑️)
removing builtin/show-ref.o (🗑️)
removing builtin/sparse-checkout.o (🗑️)
removing builtin/stash.o (🗑️)
removing builtin/stripspace.o (🗑️)
removing builtin/submodule--helper.o (🗑️)
removing builtin/symbolic-ref.o (🗑️)
removing builtin/tag.o (🗑️)
removing builtin/unpack-file.o (🗑️)
removing builtin/unpack-objects.o (🗑️)
removing builtin/update-index.o (🗑️)
removing builtin/update-ref.o (🗑️)
removing builtin/update-server-info.o (🗑️)
removing builtin/upload-archive.o (🗑️)
removing builtin/upload-pack.o (🗑️)
removing builtin/var.o (🗑️)
removing builtin/verify-commit.o (🗑️)
removing builtin/verify-pack.o (🗑️)
removing builtin/verify-tag.o (🗑️)
removing builtin/worktree.o (🗑️)
removing builtin/write-tree.o (🗑️)
removing bulk-checkin.o (🗑️)
removing bundle-uri.o (🗑️)
removing bundle.o (🗑️)
removing cache-tree.o (🗑️)
removing cbtree.o (🗑️)
removing chdir-notify.o (🗑️)
removing checkout.o (🗑️)
removing chunk-format.o (🗑️)
removing color.o (🗑️)
removing column.o (🗑️)
removing combine-diff.o (🗑️)
removing command-list.h (🗑️)
removing commit-graph.o (🗑️)
removing commit-reach.o (🗑️)
removing commit.o (🗑️)
removing common-main.o (🗑️)
removing compat/.depend/ (🗑️)
removing compat/fopen.o (🗑️)
removing compat/linux/.depend/ (🗑️)
removing compat/linux/procinfo.o (🗑️)
removing compat/nonblock.o (🗑️)
removing compat/obstack.o (🗑️)
removing compat/qsort_s.o (🗑️)
removing compat/simple-ipc/.depend/ (🗑️)
removing compat/simple-ipc/ipc-shared.o (🗑️)
removing compat/simple-ipc/ipc-unix-socket.o (🗑️)
removing compat/strlcpy.o (🗑️)
removing compat/terminal.o (🗑️)
removing compat/zlib-uncompress2.o (🗑️)
removing config-list.h (🗑️)
removing config.o (🗑️)
removing connect.o (🗑️)
removing connected.o (🗑️)
removing convert.o (🗑️)
removing copy.o (🗑️)
removing credential.o (🗑️)
removing csum-file.o (🗑️)
removing ctype.o (🗑️)
removing daemon.o (🗑️)
removing date.o (🗑️)
removing decorate.o (🗑️)
removing delta-islands.o (🗑️)
removing diagnose.o (🗑️)
removing diff-delta.o (🗑️)
removing diff-lib.o (🗑️)
removing diff-merges.o (🗑️)
removing diff-no-index.o (🗑️)
removing diff.o (🗑️)
removing diffcore-break.o (🗑️)
removing diffcore-delta.o (🗑️)
removing diffcore-order.o (🗑️)
removing diffcore-pickaxe.o (🗑️)
removing diffcore-rename.o (🗑️)
removing diffcore-rotate.o (🗑️)
removing dir-iterator.o (🗑️)
removing dir.o (🗑️)
removing editor.o (🗑️)
removing entry.o (🗑️)
removing environment.o (🗑️)
removing ewah/.depend/ (🗑️)
removing ewah/bitmap.o (🗑️)
removing ewah/ewah_bitmap.o (🗑️)
removing ewah/ewah_io.o (🗑️)
removing ewah/ewah_rlw.o (🗑️)
removing exec-cmd.o (🗑️)
removing fetch-negotiator.o (🗑️)
removing fetch-pack.o (🗑️)
removing fmt-merge-msg.o (🗑️)
removing fsck.o (🗑️)
removing fsmonitor-ipc.o (🗑️)
removing fsmonitor-settings.o (🗑️)
removing fsmonitor.o (🗑️)
removing gettext.o (🗑️)
removing git (🗑️)
removing git-add (🗑️)
removing git-add--interactive (🗑️)
removing git-am (🗑️)
removing git-annotate (🗑️)
removing git-apply (🗑️)
removing git-archimport (🗑️)
removing git-archive (🗑️)
removing git-bisect (🗑️)
removing git-bisect--helper (🗑️)
removing git-blame (🗑️)
removing git-branch (🗑️)
removing git-bugreport (🗑️)
removing git-bundle (🗑️)
removing git-cat-file (🗑️)
removing git-check-attr (🗑️)
removing git-check-ignore (🗑️)
removing git-check-mailmap (🗑️)
removing git-check-ref-format (🗑️)
removing git-checkout (🗑️)
removing git-checkout--worker (🗑️)
removing git-checkout-index (🗑️)
removing git-cherry (🗑️)
removing git-cherry-pick (🗑️)
removing git-clean (🗑️)
removing git-clone (🗑️)
removing git-column (🗑️)
removing git-commit (🗑️)
removing git-commit-graph (🗑️)
removing git-commit-tree (🗑️)
removing git-config (🗑️)
removing git-count-objects (🗑️)
removing git-credential (🗑️)
removing git-credential-cache (🗑️)
removing git-credential-cache--daemon (🗑️)
removing git-credential-store (🗑️)
removing git-cvsexportcommit (🗑️)
removing git-cvsimport (🗑️)
removing git-cvsserver (🗑️)
removing git-daemon (🗑️)
removing git-describe (🗑️)
removing git-diagnose
removing git-diff (🗑️)
removing git-diff-files (🗑️)
removing git-diff-index (🗑️)
removing git-diff-tree (🗑️)
removing git-difftool (🗑️)
removing git-difftool--helper (🗑️)
removing git-env--helper (🗑️)
removing git-fast-export (🗑️)
removing git-fast-import (🗑️)
removing git-fetch (🗑️)
removing git-fetch-pack (🗑️)
removing git-filter-branch (🗑️)
removing git-fmt-merge-msg (🗑️)
removing git-for-each-ref (🗑️)
removing git-for-each-repo (🗑️)
removing git-format-patch (🗑️)
removing git-fsck (🗑️)
removing git-fsck-objects (🗑️)
removing git-fsmonitor--daemon (🗑️)
removing git-gc (🗑️)
removing git-get-tar-commit-id (🗑️)
removing git-grep (🗑️)
removing git-gui/GIT-GUI-VARS (🗑️)
removing git-gui/GIT-VERSION-FILE (🗑️)
removing git-gui/git-gui (🗑️)
removing git-gui/lib/tclIndex (🗑️)
removing git-gui/po/bg.msg (🗑️)
removing git-gui/po/de.msg (🗑️)
removing git-gui/po/el.msg (🗑️)
removing git-gui/po/fr.msg (🗑️)
removing git-gui/po/hu.msg (🗑️)
removing git-gui/po/it.msg (🗑️)
removing git-gui/po/ja.msg (🗑️)
removing git-gui/po/nb.msg (🗑️)
removing git-gui/po/pt_br.msg (🗑️)
removing git-gui/po/pt_pt.msg (🗑️)
removing git-gui/po/ru.msg (🗑️)
removing git-gui/po/sv.msg (🗑️)
removing git-gui/po/vi.msg (🗑️)
removing git-gui/po/zh_cn.msg (🗑️)
removing git-hash-object (🗑️)
removing git-help (🗑️)
removing git-hook (🗑️)
removing git-http-backend (🗑️)
removing git-http-fetch (🗑️)
removing git-http-push (🗑️)
removing git-imap-send (🗑️)
removing git-index-pack (🗑️)
removing git-init (🗑️)
removing git-init-db (🗑️)
removing git-instaweb (🗑️)
removing git-interpret-trailers (🗑️)
removing git-log (🗑️)
removing git-ls-files (🗑️)
removing git-ls-remote (🗑️)
removing git-ls-tree (🗑️)
removing git-mailinfo (🗑️)
removing git-mailsplit (🗑️)
removing git-maintenance (🗑️)
removing git-merge (🗑️)
removing git-merge-base (🗑️)
removing git-merge-file (🗑️)
removing git-merge-index (🗑️)
removing git-merge-octopus (🗑️)
removing git-merge-one-file (🗑️)
removing git-merge-ours (🗑️)
removing git-merge-recursive (🗑️)
removing git-merge-resolve (🗑️)
removing git-merge-subtree (🗑️)
removing git-merge-tree (🗑️)
removing git-mergetool (🗑️)
removing git-mergetool--lib (🗑️)
removing git-mktag (🗑️)
removing git-mktree (🗑️)
removing git-multi-pack-index (🗑️)
removing git-mv (🗑️)
removing git-name-rev (🗑️)
removing git-notes (🗑️)
removing git-p4 (🗑️)
removing git-pack-objects (🗑️)
removing git-pack-redundant (🗑️)
removing git-pack-refs (🗑️)
removing git-patch-id (🗑️)
removing git-prune (🗑️)
removing git-prune-packed (🗑️)
removing git-pull (🗑️)
removing git-push (🗑️)
removing git-quiltimport (🗑️)
removing git-range-diff (🗑️)
removing git-read-tree (🗑️)
removing git-rebase (🗑️)
removing git-receive-pack (🗑️)
removing git-reflog (🗑️)
removing git-remote (🗑️)
removing git-remote-ext (🗑️)
removing git-remote-fd (🗑️)
removing git-remote-ftp (🗑️)
removing git-remote-ftps (🗑️)
removing git-remote-http (🗑️)
removing git-remote-https (🗑️)
removing git-repack (🗑️)
removing git-replace (🗑️)
removing git-request-pull (🗑️)
removing git-rerere (🗑️)
removing git-reset (🗑️)
removing git-restore (🗑️)
removing git-rev-list (🗑️)
removing git-rev-parse (🗑️)
removing git-revert (🗑️)
removing git-rm (🗑️)
removing git-send-email (🗑️)
removing git-send-pack (🗑️)
removing git-sh-i18n (🗑️)
removing git-sh-i18n--envsubst (🗑️)
removing git-sh-setup (🗑️)
removing git-shell (🗑️)
removing git-shortlog (🗑️)
removing git-show (🗑️)
removing git-show-branch (🗑️)
removing git-show-index (🗑️)
removing git-show-ref (🗑️)
removing git-sparse-checkout (🗑️)
removing git-stage (🗑️)
removing git-stash (🗑️)
removing git-status (🗑️)
removing git-stripspace (🗑️)
removing git-submodule (🗑️)
removing git-submodule--helper (🗑️)
removing git-svn (🗑️)
removing git-switch (🗑️)
removing git-symbolic-ref (🗑️)
removing git-tag (🗑️)
removing git-unpack-file (🗑️)
removing git-unpack-objects (🗑️)
removing git-update-index (🗑️)
removing git-update-ref (🗑️)
removing git-update-server-info (🗑️)
removing git-upload-archive (🗑️)
removing git-upload-pack (🗑️)
removing git-var (🗑️)
removing git-verify-commit (🗑️)
removing git-verify-pack (🗑️)
removing git-verify-tag (🗑️)
removing git-version
removing git-web--browse (🗑️)
removing git-whatchanged (🗑️)
removing git-worktree (🗑️)
removing git-write-tree (🗑️)
removing git.o (🗑️)
removing gitk-git/GIT-TCLTK-VARS (🗑️)
removing gitk-git/gitk-wish (🗑️)
removing gitk-git/po/bg.msg (🗑️)
removing gitk-git/po/ca.msg (🗑️)
removing gitk-git/po/de.msg (🗑️)
removing gitk-git/po/es.msg (🗑️)
removing gitk-git/po/fr.msg (🗑️)
removing gitk-git/po/hu.msg (🗑️)
removing gitk-git/po/it.msg (🗑️)
removing gitk-git/po/ja.msg (🗑️)
removing gitk-git/po/pt_br.msg (🗑️)
removing gitk-git/po/pt_pt.msg (🗑️)
removing gitk-git/po/ru.msg (🗑️)
removing gitk-git/po/sv.msg (🗑️)
removing gitk-git/po/vi.msg (🗑️)
removing gitk-git/po/zh_cn.msg (🗑️)
removing gitweb/GITWEB-BUILD-OPTIONS (🗑️)
removing gitweb/gitweb.cgi (🗑️)
removing gitweb/static/gitweb.js (🗑️)
removing gpg-interface.o (🗑️)
removing graph.o (🗑️)
removing grep.o (🗑️)
removing hash-lookup.o (🗑️)
removing hashmap.o (🗑️)
removing help.o (🗑️)
removing hex.o (🗑️)
removing hook-list.h (🗑️)
removing hook.o (🗑️)
removing http-backend.o (🗑️)
removing http-fetch.o (🗑️)
removing http-push.o (🗑️)
removing http-walker.o (🗑️)
removing http.o (🗑️)
removing ident.o (🗑️)
removing imap-send.o (🗑️)
removing json-writer.o (🗑️)
removing kwset.o (🗑️)
removing levenshtein.o (🗑️)
removing libgit.a (🗑️)
removing line-log.o (🗑️)
removing line-range.o (🗑️)
removing linear-assignment.o (🗑️)
removing list-objects-filter-options.o (🗑️)
removing list-objects-filter.o (🗑️)
removing list-objects.o (🗑️)
removing ll-merge.o (🗑️)
removing lockfile.o (🗑️)
removing log-tree.o (🗑️)
removing ls-refs.o (🗑️)
removing mailinfo.o (🗑️)
removing mailmap.o (🗑️)
removing match-trees.o (🗑️)
removing mem-pool.o (🗑️)
removing merge-blobs.o (🗑️)
removing merge-ort-wrappers.o (🗑️)
removing merge-ort.o (🗑️)
removing merge-recursive.o (🗑️)
removing merge.o (🗑️)
removing midx.o (🗑️)
removing name-hash.o (🗑️)
removing negotiator/.depend/ (🗑️)
removing negotiator/default.o (🗑️)
removing negotiator/noop.o (🗑️)
removing negotiator/skipping.o (🗑️)
removing notes-cache.o (🗑️)
removing notes-merge.o (🗑️)
removing notes-utils.o (🗑️)
removing notes.o (🗑️)
removing object-file.o (🗑️)
removing object-name.o (🗑️)
removing object.o (🗑️)
removing oid-array.o (🗑️)
removing oidmap.o (🗑️)
removing oidset.o (🗑️)
removing oidtree.o (🗑️)
removing oss-fuzz/ (🗑️)
removing pack-bitmap-write.o (🗑️)
removing pack-bitmap.o (🗑️)
removing pack-check.o (🗑️)
removing pack-mtimes.o (🗑️)
removing pack-objects.o (🗑️)
removing pack-revindex.o (🗑️)
removing pack-write.o (🗑️)
removing packfile.o (🗑️)
removing pager.o (🗑️)
removing parallel-checkout.o (🗑️)
removing parse-options-cb.o (🗑️)
removing parse-options.o (🗑️)
removing patch-delta.o (🗑️)
removing patch-ids.o (🗑️)
removing path.o (🗑️)
removing pathspec.o (🗑️)
removing perl/build/ (🗑️)
removing pkt-line.o (🗑️)
removing po/build/ (🗑️)
removing preload-index.o (🗑️)
removing pretty.o (🗑️)
removing prio-queue.o (🗑️)
removing progress.o (🗑️)
removing promisor-remote.o (🗑️)
removing prompt.o (🗑️)
removing protocol-caps.o (🗑️)
removing protocol.o (🗑️)
removing prune-packed.o (🗑️)
removing quote.o (🗑️)
removing range-diff.o (🗑️)
removing reachable.o (🗑️)
removing read-cache.o (🗑️)
removing rebase-interactive.o (🗑️)
removing rebase.o (🗑️)
removing ref-filter.o (🗑️)
removing reflog-walk.o (🗑️)
removing reflog.o (🗑️)
removing refs.o (🗑️)
removing refs/.depend/ (🗑️)
removing refs/debug.o (🗑️)
removing refs/files-backend.o (🗑️)
removing refs/iterator.o (🗑️)
removing refs/packed-backend.o (🗑️)
removing refs/ref-cache.o (🗑️)
removing refspec.o (🗑️)
removing reftable/.depend/ (🗑️)
removing reftable/basics.o (🗑️)
removing reftable/basics_test.o (🗑️)
removing reftable/block.o (🗑️)
removing reftable/block_test.o (🗑️)
removing reftable/blocksource.o (🗑️)
removing reftable/dump.o (🗑️)
removing reftable/error.o (🗑️)
removing reftable/generic.o (🗑️)
removing reftable/iter.o (🗑️)
removing reftable/libreftable.a (🗑️)
removing reftable/libreftable_test.a (🗑️)
removing reftable/merged.o (🗑️)
removing reftable/merged_test.o (🗑️)
removing reftable/pq.o (🗑️)
removing reftable/pq_test.o (🗑️)
removing reftable/publicbasics.o (🗑️)
removing reftable/reader.o (🗑️)
removing reftable/readwrite_test.o (🗑️)
removing reftable/record.o (🗑️)
removing reftable/record_test.o (🗑️)
removing reftable/refname.o (🗑️)
removing reftable/refname_test.o (🗑️)
removing reftable/stack.o (🗑️)
removing reftable/stack_test.o (🗑️)
removing reftable/test_framework.o (🗑️)
removing reftable/tree.o (🗑️)
removing reftable/tree_test.o (🗑️)
removing reftable/writer.o (🗑️)
removing remote-curl.o (🗑️)
removing remote.o (🗑️)
removing replace-object.o (🗑️)
removing repo-settings.o (🗑️)
removing repository.o (🗑️)
removing rerere.o (🗑️)
removing reset.o (🗑️)
removing resolve-undo.o (🗑️)
removing revision.o (🗑️)
removing run-command.o (🗑️)
removing scalar
removing scalar.o (🗑️)
removing send-pack.o (🗑️)
removing sequencer.o (🗑️)
removing serve.o (🗑️)
removing server-info.o (🗑️)
removing setup.o (🗑️)
removing sh-i18n--envsubst.o (🗑️)
removing sha1dc/.depend/ (🗑️)
removing sha1dc/sha1.o (🗑️)
removing sha1dc/ubc_check.o (🗑️)
removing sha1dc_git.o (🗑️)
removing sha256/block/.depend/ (🗑️)
removing sha256/block/sha256.o (🗑️)
removing shallow.o (🗑️)
removing shell.o (🗑️)
removing sideband.o (🗑️)
removing sigchain.o (🗑️)
removing sparse-index.o (🗑️)
removing split-index.o (🗑️)
removing stable-qsort.o (🗑️)
removing strbuf.o (🗑️)
removing streaming.o (🗑️)
removing string-list.o (🗑️)
removing strmap.o (🗑️)
removing strvec.o (🗑️)
removing sub-process.o (🗑️)
removing submodule-config.o (🗑️)
removing submodule.o (🗑️)
removing symlinks.o (🗑️)
removing t/helper/.depend/ (🗑️)
removing t/helper/test-advise.o (🗑️)
removing t/helper/test-bitmap.o (🗑️)
removing t/helper/test-bloom.o (🗑️)
removing t/helper/test-bundle-uri.o (🗑️)
removing t/helper/test-cache-tree.o (🗑️)
removing t/helper/test-chmtime.o (🗑️)
removing t/helper/test-config.o (🗑️)
removing t/helper/test-crontab.o (🗑️)
removing t/helper/test-csprng.o (🗑️)
removing t/helper/test-ctype.o (🗑️)
removing t/helper/test-date.o (🗑️)
removing t/helper/test-delta.o (🗑️)
removing t/helper/test-dir-iterator.o (🗑️)
removing t/helper/test-drop-caches.o (🗑️)
removing t/helper/test-dump-cache-tree.o (🗑️)
removing t/helper/test-dump-fsmonitor.o (🗑️)
removing t/helper/test-dump-split-index.o (🗑️)
removing t/helper/test-dump-untracked-cache.o (🗑️)
removing t/helper/test-example-decorate.o (🗑️)
removing t/helper/test-fake-ssh (🗑️)
removing t/helper/test-fake-ssh.o (🗑️)
removing t/helper/test-fast-rebase.o (🗑️)
removing t/helper/test-fsmonitor-client.o (🗑️)
removing t/helper/test-genrandom.o (🗑️)
removing t/helper/test-genzeros.o (🗑️)
removing t/helper/test-getcwd.o (🗑️)
removing t/helper/test-hash-speed.o (🗑️)
removing t/helper/test-hash.o (🗑️)
removing t/helper/test-hashmap.o (🗑️)
removing t/helper/test-hexdump.o (🗑️)
removing t/helper/test-index-version.o (🗑️)
removing t/helper/test-json-writer.o (🗑️)
removing t/helper/test-lazy-init-name-hash.o (🗑️)
removing t/helper/test-match-trees.o (🗑️)
removing t/helper/test-mergesort.o (🗑️)
removing t/helper/test-mktemp.o (🗑️)
removing t/helper/test-oid-array.o (🗑️)
removing t/helper/test-oidmap.o (🗑️)
removing t/helper/test-oidtree.o (🗑️)
removing t/helper/test-online-cpus.o (🗑️)
removing t/helper/test-pack-mtimes.o (🗑️)
removing t/helper/test-parse-options.o (🗑️)
removing t/helper/test-parse-pathspec-file.o (🗑️)
removing t/helper/test-partial-clone.o (🗑️)
removing t/helper/test-path-utils.o (🗑️)
removing t/helper/test-pcre2-config.o (🗑️)
removing t/helper/test-pkt-line.o (🗑️)
removing t/helper/test-prio-queue.o (🗑️)
removing t/helper/test-proc-receive.o (🗑️)
removing t/helper/test-progress.o (🗑️)
removing t/helper/test-reach.o (🗑️)
removing t/helper/test-read-cache.o (🗑️)
removing t/helper/test-read-graph.o (🗑️)
removing t/helper/test-read-midx.o (🗑️)
removing t/helper/test-ref-store.o (🗑️)
removing t/helper/test-reftable.o (🗑️)
removing t/helper/test-regex.o (🗑️)
removing t/helper/test-repository.o (🗑️)
removing t/helper/test-revision-walking.o (🗑️)
removing t/helper/test-rot13-filter.o (🗑️)
removing t/helper/test-run-command.o (🗑️)
removing t/helper/test-scrap-cache-tree.o (🗑️)
removing t/helper/test-serve-v2.o (🗑️)
removing t/helper/test-sha1.o (🗑️)
removing t/helper/test-sha256.o (🗑️)
removing t/helper/test-sigchain.o (🗑️)
removing t/helper/test-simple-ipc.o (🗑️)
removing t/helper/test-strcmp-offset.o (🗑️)
removing t/helper/test-string-list.o (🗑️)
removing t/helper/test-submodule-config.o (🗑️)
removing t/helper/test-submodule-nested-repo-config.o (🗑️)
removing t/helper/test-submodule.o (🗑️)
removing t/helper/test-subprocess.o (🗑️)
removing t/helper/test-tool (🗑️)
removing t/helper/test-tool.o (🗑️)
removing t/helper/test-trace2.o (🗑️)
removing t/helper/test-urlmatch-normalization.o (🗑️)
removing t/helper/test-userdiff.o (🗑️)
removing t/helper/test-wildmatch.o (🗑️)
removing t/helper/test-windows-named-pipe.o (🗑️)
removing t/helper/test-write-cache.o (🗑️)
removing t/helper/test-xml-encode.o (🗑️)
removing tag.o (🗑️)
removing tempfile.o (🗑️)
removing templates/blt/ (🗑️)
removing templates/boilerplates.made (🗑️)
removing thread-utils.o (🗑️)
removing tmp-objdir.o (🗑️)
removing trace.o (🗑️)
removing trace2.o (🗑️)
removing trace2/.depend/ (🗑️)
removing trace2/tr2_cfg.o (🗑️)
removing trace2/tr2_cmd_name.o (🗑️)
removing trace2/tr2_ctr.o (🗑️)
removing trace2/tr2_dst.o (🗑️)
removing trace2/tr2_sid.o (🗑️)
removing trace2/tr2_sysenv.o (🗑️)
removing trace2/tr2_tbuf.o (🗑️)
removing trace2/tr2_tgt_event.o (🗑️)
removing trace2/tr2_tgt_normal.o (🗑️)
removing trace2/tr2_tgt_perf.o (🗑️)
removing trace2/tr2_tls.o (🗑️)
removing trace2/tr2_tmr.o (🗑️)
removing trailer.o (🗑️)
removing transport-helper.o (🗑️)
removing transport.o (🗑️)
removing tree-diff.o (🗑️)
removing tree-walk.o (🗑️)
removing tree.o (🗑️)
removing unix-socket.o (🗑️)
removing unix-stream-server.o (🗑️)
removing unpack-trees.o (🗑️)
removing upload-pack.o (🗑️)
removing url.o (🗑️)
removing urlmatch.o (🗑️)
removing usage.o (🗑️)
removing userdiff.o (🗑️)
removing utf8.o (🗑️)
removing varint.o (🗑️)
removing version.o (🗑️)
removing versioncmp.o (🗑️)
removing walker.o (🗑️)
removing wildmatch.o (🗑️)
removing worktree.o (🗑️)
removing wrapper.o (🗑️)
removing write-or-die.o (🗑️)
removing ws.o (🗑️)
removing wt-status.o (🗑️)
removing xdiff-interface.o (🗑️)
removing xdiff/.depend/ (🗑️)
removing xdiff/lib.a (🗑️)
removing xdiff/xdiffi.o (🗑️)
removing xdiff/xemit.o (🗑️)
removing xdiff/xhistogram.o (🗑️)
removing xdiff/xmerge.o (🗑️)
removing xdiff/xpatience.o (🗑️)
removing xdiff/xprepare.o (🗑️)
removing xdiff/xutils.o (🗑️)
removing zlib.o (🗑️)
ek@apok:~/src/git ((28c2a35997...)|BISECTING)$ make prefix="$HOME/mygit" -j5^C
ek@apok:~/src/git ((28c2a35997...)|BISECTING)[130]$ rm -r ~/mygit
ek@apok:~/src/git ((28c2a35997...)|BISECTING)$ make prefix="$HOME/mygit" -j5
GIT_VERSION = 2.36.1.420.g28c2a35997
* new build flags
CC fuzz-commit-graph.o
CC fuzz-pack-idx.o
CC fuzz-pack-headers.o
CC daemon.o
CC common-main.o
CC abspath.o
CC add-interactive.o
* new link flags
CC add-patch.o
CC advice.o
CC alias.o
CC alloc.o
CC apply.o
CC archive-tar.o
CC archive-zip.o
CC archive.o
* new prefix flags
CC base85.o
CC bisect.o
CC blame.o
CC blob.o
CC bloom.o
CC branch.o
CC bulk-checkin.o
CC bundle.o
CC cache-tree.o
CC cbtree.o
CC chdir-notify.o
CC checkout.o
CC chunk-format.o
CC color.o
CC column.o
CC combine-diff.o
CC commit-graph.o
CC commit-reach.o
CC commit.o
CC compat/obstack.o
CC compat/terminal.o
CC compat/zlib-uncompress2.o
CC config.o
CC connect.o
CC connected.o
CC convert.o
CC copy.o
CC credential.o
CC csum-file.o
CC ctype.o
CC date.o
CC decorate.o
CC delta-islands.o
CC diff-delta.o
CC diff-merges.o
CC diff-lib.o
CC diff-no-index.o
CC diff.o
CC diffcore-break.o
CC diffcore-delta.o
CC diffcore-order.o
CC diffcore-pickaxe.o
CC diffcore-rename.o
CC diffcore-rotate.o
CC dir-iterator.o
CC dir.o
CC editor.o
CC entry.o
CC environment.o
CC ewah/bitmap.o
CC ewah/ewah_bitmap.o
CC ewah/ewah_io.o
CC ewah/ewah_rlw.o
CC exec-cmd.o
CC fetch-negotiator.o
CC fetch-pack.o
CC fmt-merge-msg.o
CC fsck.o
CC fsmonitor.o
CC fsmonitor-ipc.o
CC fsmonitor-settings.o
CC gettext.o
CC gpg-interface.o
CC graph.o
CC grep.o
CC hash-lookup.o
CC hashmap.o
GEN command-list.h
CC hex.o
CC hook.o
CC ident.o
CC json-writer.o
CC kwset.o
CC levenshtein.o
CC line-log.o
CC line-range.o
CC linear-assignment.o
CC list-objects-filter-options.o
CC list-objects-filter.o
CC list-objects.o
CC ll-merge.o
CC lockfile.o
CC log-tree.o
CC ls-refs.o
CC mailinfo.o
CC mailmap.o
CC match-trees.o
CC mem-pool.o
CC merge-blobs.o
CC merge-ort.o
CC merge-ort-wrappers.o
CC merge-recursive.o
CC merge.o
CC mergesort.o
CC midx.o
CC name-hash.o
CC negotiator/default.o
CC negotiator/noop.o
CC negotiator/skipping.o
CC notes-cache.o
CC notes-merge.o
CC notes-utils.o
CC notes.o
CC object-file.o
CC object-name.o
CC object.o
CC oid-array.o
CC oidmap.o
CC oidset.o
CC oidtree.o
CC pack-bitmap-write.o
CC pack-bitmap.o
CC pack-check.o
CC pack-mtimes.o
CC pack-objects.o
CC pack-revindex.o
CC pack-write.o
CC packfile.o
CC pager.o
CC parallel-checkout.o
CC parse-options-cb.o
CC parse-options.o
CC patch-delta.o
CC patch-ids.o
CC path.o
CC pathspec.o
CC pkt-line.o
CC preload-index.o
CC pretty.o
CC prio-queue.o
CC progress.o
CC promisor-remote.o
CC prompt.o
CC protocol.o
CC protocol-caps.o
CC prune-packed.o
CC quote.o
CC range-diff.o
CC reachable.o
CC read-cache.o
CC rebase-interactive.o
CC rebase.o
CC ref-filter.o
CC reflog-walk.o
CC reflog.o
CC refs.o
CC refs/debug.o
CC refs/files-backend.o
CC refs/iterator.o
CC refs/packed-backend.o
CC refs/ref-cache.o
CC refspec.o
CC remote.o
CC replace-object.o
CC repo-settings.o
CC repository.o
CC rerere.o
CC reset.o
CC resolve-undo.o
CC revision.o
CC run-command.o
CC send-pack.o
CC sequencer.o
CC serve.o
CC server-info.o
CC setup.o
CC shallow.o
CC sideband.o
CC sigchain.o
CC sparse-index.o
CC split-index.o
CC stable-qsort.o
CC strbuf.o
CC streaming.o
CC string-list.o
CC strmap.o
CC strvec.o
CC sub-process.o
CC submodule-config.o
CC submodule.o
CC symlinks.o
CC tag.o
CC tempfile.o
CC thread-utils.o
CC tmp-objdir.o
CC trace.o
CC trace2.o
CC trace2/tr2_cfg.o
CC trace2/tr2_cmd_name.o
CC trace2/tr2_dst.o
CC trace2/tr2_sid.o
CC trace2/tr2_sysenv.o
CC trace2/tr2_tbuf.o
CC trace2/tr2_tgt_event.o
CC trace2/tr2_tgt_normal.o
CC trace2/tr2_tgt_perf.o
CC trace2/tr2_tls.o
CC trailer.o
CC transport-helper.o
CC transport.o
CC tree-diff.o
CC tree-walk.o
CC tree.o
CC unpack-trees.o
CC upload-pack.o
CC url.o
CC urlmatch.o
CC usage.o
CC userdiff.o
CC utf8.o
CC varint.o
CC versioncmp.o
CC walker.o
CC wildmatch.o
CC worktree.o
CC wrapper.o
CC write-or-die.o
CC ws.o
CC wt-status.o
CC xdiff-interface.o
CC zlib.o
CC unix-socket.o
CC unix-stream-server.o
CC compat/simple-ipc/ipc-shared.o
CC compat/simple-ipc/ipc-unix-socket.o
CC sha1dc_git.o
CC sha1dc/sha1.o
CC sha1dc/ubc_check.o
CC sha256/block/sha256.o
CC compat/linux/procinfo.o
CC compat/fopen.o
CC compat/strlcpy.o
CC compat/qsort_s.o
CC xdiff/xdiffi.o
CC xdiff/xemit.o
CC xdiff/xhistogram.o
CC xdiff/xmerge.o
CC xdiff/xpatience.o
CC xdiff/xprepare.o
CC xdiff/xutils.o
CC reftable/basics.o
CC reftable/error.o
CC reftable/block.o
CC reftable/blocksource.o
CC reftable/iter.o
CC reftable/publicbasics.o
CC reftable/merged.o
CC reftable/pq.o
CC reftable/reader.o
CC reftable/record.o
CC reftable/refname.o
CC reftable/generic.o
CC reftable/stack.o
CC reftable/tree.o
CC reftable/writer.o
CC http-backend.o
CC imap-send.o
CC http.o
CC sh-i18n--envsubst.o
CC shell.o
CC http-walker.o
CC http-fetch.o
CC http-push.o
CC remote-curl.o
* new script parameters
* new perl-specific parameters
* new Python interpreter location
GEN git-instaweb
CC git.o
CC builtin/add.o
CC builtin/am.o
CC builtin/annotate.o
CC builtin/apply.o
CC builtin/archive.o
CC builtin/bisect--helper.o
CC builtin/blame.o
CC builtin/branch.o
GEN hook-list.h
CC builtin/bundle.o
CC builtin/cat-file.o
CC builtin/check-attr.o
CC builtin/check-ignore.o
CC builtin/check-mailmap.o
CC builtin/check-ref-format.o
CC builtin/checkout--worker.o
CC builtin/checkout-index.o
CC builtin/checkout.o
CC builtin/clean.o
CC builtin/clone.o
CC builtin/column.o
CC builtin/commit-graph.o
CC builtin/commit-tree.o
CC builtin/commit.o
CC builtin/config.o
CC builtin/count-objects.o
CC builtin/credential-cache--daemon.o
CC builtin/credential-cache.o
CC builtin/credential-store.o
CC builtin/credential.o
CC builtin/describe.o
CC builtin/diff-files.o
CC builtin/diff-index.o
CC builtin/diff-tree.o
CC builtin/diff.o
CC builtin/difftool.o
CC builtin/env--helper.o
CC builtin/fast-export.o
CC builtin/fast-import.o
CC builtin/fetch-pack.o
CC builtin/fetch.o
CC builtin/fmt-merge-msg.o
CC builtin/for-each-ref.o
CC builtin/for-each-repo.o
CC builtin/fsck.o
CC builtin/fsmonitor--daemon.o
CC builtin/gc.o
CC builtin/get-tar-commit-id.o
CC builtin/grep.o
CC builtin/hash-object.o
GEN config-list.h
CC builtin/hook.o
CC builtin/index-pack.o
CC builtin/init-db.o
CC builtin/interpret-trailers.o
CC builtin/log.o
CC builtin/ls-files.o
CC builtin/ls-remote.o
CC builtin/ls-tree.o
CC builtin/mailinfo.o
CC builtin/mailsplit.o
CC builtin/merge-base.o
CC builtin/merge-file.o
CC builtin/merge-index.o
CC builtin/merge-ours.o
CC builtin/merge-recursive.o
CC builtin/merge-tree.o
CC builtin/merge.o
CC builtin/mktag.o
CC builtin/mktree.o
CC builtin/multi-pack-index.o
CC builtin/mv.o
CC builtin/name-rev.o
CC builtin/notes.o
CC builtin/pack-objects.o
CC builtin/pack-redundant.o
CC builtin/pack-refs.o
CC builtin/patch-id.o
CC builtin/prune-packed.o
CC builtin/prune.o
CC builtin/pull.o
CC builtin/push.o
CC builtin/range-diff.o
CC builtin/read-tree.o
CC builtin/rebase.o
CC builtin/receive-pack.o
CC builtin/reflog.o
CC builtin/remote-ext.o
CC builtin/remote-fd.o
CC builtin/remote.o
CC builtin/repack.o
CC builtin/replace.o
CC builtin/rerere.o
CC builtin/reset.o
CC builtin/rev-list.o
CC builtin/rev-parse.o
CC builtin/revert.o
CC builtin/rm.o
CC builtin/send-pack.o
CC builtin/shortlog.o
CC builtin/show-branch.o
CC builtin/show-index.o
CC builtin/show-ref.o
CC builtin/sparse-checkout.o
CC builtin/stash.o
CC builtin/stripspace.o
CC builtin/submodule--helper.o
CC builtin/symbolic-ref.o
CC builtin/tag.o
CC builtin/unpack-file.o
CC builtin/unpack-objects.o
CC builtin/update-index.o
CC builtin/update-ref.o
CC builtin/update-server-info.o
CC builtin/upload-archive.o
CC builtin/upload-pack.o
CC builtin/var.o
CC builtin/verify-commit.o
CC builtin/verify-pack.o
CC builtin/verify-tag.o
CC builtin/worktree.o
CC builtin/write-tree.o
GEN git-mergetool--lib
GEN git-sh-i18n
GEN git-sh-setup
CC attr.o
CC help.o
CC version.o
AR xdiff/lib.a
AR reftable/libreftable.a
GEN git-bisect
GEN git-difftool--helper
GEN git-filter-branch
GEN git-merge-octopus
GEN git-merge-one-file
GEN git-merge-resolve
GEN git-mergetool
GEN git-quiltimport
GEN git-request-pull
GEN git-submodule
GEN git-web--browse
GEN GIT-PERL-HEADER
GEN git-p4
CC builtin/bugreport.o
CC builtin/help.o
GEN git-add--interactive
GEN git-archimport
GEN git-cvsexportcommit
GEN git-cvsimport
GEN git-cvsserver
GEN git-send-email
GEN git-svn
AR libgit.a
LINK git-daemon
LINK git-http-backend
LINK git-imap-send
LINK git-sh-i18n--envsubst
LINK git-shell
LINK git-http-fetch
LINK git-http-push
LINK git-remote-http
LINK git
LN/CP git-remote-ftp
LN/CP git-remote-https
LN/CP git-remote-ftps
BUILTIN git-add
BUILTIN git-am
BUILTIN git-annotate
BUILTIN git-apply
BUILTIN git-archive
BUILTIN git-bisect--helper
BUILTIN git-blame
BUILTIN git-branch
BUILTIN git-bugreport
BUILTIN git-bundle
BUILTIN git-cat-file
BUILTIN git-check-attr
BUILTIN git-check-ignore
BUILTIN git-check-mailmap
BUILTIN git-check-ref-format
BUILTIN git-checkout--worker
BUILTIN git-checkout
BUILTIN git-checkout-index
BUILTIN git-clean
BUILTIN git-clone
BUILTIN git-column
BUILTIN git-commit-graph
BUILTIN git-commit-tree
BUILTIN git-count-objects
BUILTIN git-config
BUILTIN git-commit
BUILTIN git-credential-cache--daemon
BUILTIN git-credential-cache
BUILTIN git-credential-store
BUILTIN git-credential
BUILTIN git-describe
BUILTIN git-diff-files
BUILTIN git-diff-index
BUILTIN git-diff-tree
BUILTIN git-diff
BUILTIN git-difftool
BUILTIN git-env--helper
BUILTIN git-fast-export
BUILTIN git-fast-import
BUILTIN git-fetch-pack
BUILTIN git-fetch
BUILTIN git-fmt-merge-msg
BUILTIN git-for-each-ref
BUILTIN git-fsck
BUILTIN git-for-each-repo
BUILTIN git-fsmonitor--daemon
BUILTIN git-gc
BUILTIN git-get-tar-commit-id
BUILTIN git-grep
BUILTIN git-hash-object
BUILTIN git-help
BUILTIN git-hook
BUILTIN git-index-pack
BUILTIN git-init-db
BUILTIN git-interpret-trailers
BUILTIN git-log
BUILTIN git-ls-files
BUILTIN git-ls-remote
BUILTIN git-ls-tree
BUILTIN git-mailinfo
BUILTIN git-mailsplit
BUILTIN git-merge-base
BUILTIN git-merge-file
BUILTIN git-merge-index
BUILTIN git-merge-ours
BUILTIN git-merge-recursive
BUILTIN git-merge
BUILTIN git-mktag
BUILTIN git-merge-tree
BUILTIN git-mktree
BUILTIN git-multi-pack-index
BUILTIN git-mv
BUILTIN git-name-rev
BUILTIN git-notes
BUILTIN git-pack-redundant
BUILTIN git-pack-objects
BUILTIN git-patch-id
BUILTIN git-prune-packed
BUILTIN git-pack-refs
BUILTIN git-prune
BUILTIN git-pull
BUILTIN git-push
BUILTIN git-range-diff
BUILTIN git-read-tree
BUILTIN git-rebase
BUILTIN git-receive-pack
BUILTIN git-reflog
BUILTIN git-remote-fd
BUILTIN git-remote-ext
BUILTIN git-remote
BUILTIN git-repack
BUILTIN git-replace
BUILTIN git-rerere
BUILTIN git-reset
BUILTIN git-rev-list
BUILTIN git-rev-parse
BUILTIN git-revert
BUILTIN git-rm
BUILTIN git-send-pack
BUILTIN git-shortlog
BUILTIN git-show-branch
BUILTIN git-show-ref
BUILTIN git-show-index
BUILTIN git-sparse-checkout
BUILTIN git-stash
BUILTIN git-stripspace
BUILTIN git-submodule--helper
BUILTIN git-symbolic-ref
BUILTIN git-tag
BUILTIN git-unpack-file
BUILTIN git-unpack-objects
BUILTIN git-update-ref
BUILTIN git-update-index
BUILTIN git-update-server-info
BUILTIN git-upload-archive
BUILTIN git-upload-pack
BUILTIN git-var
BUILTIN git-verify-commit
BUILTIN git-verify-pack
BUILTIN git-verify-tag
BUILTIN git-worktree
BUILTIN git-write-tree
BUILTIN git-cherry
BUILTIN git-cherry-pick
BUILTIN git-format-patch
BUILTIN git-fsck-objects
BUILTIN git-init
BUILTIN git-maintenance
BUILTIN git-merge-subtree
BUILTIN git-restore
BUILTIN git-show
BUILTIN git-stage
BUILTIN git-status
BUILTIN git-switch
BUILTIN git-whatchanged
SUBDIR git-gui
GITGUI_VERSION = 0.21.0.99.gdf4f9
* new locations or Tcl/Tk interpreter
MSGFMT po/bg.msg MSGFMT po/de.msg MSGFMT po/el.msg MSGFMT po/fr.msg MSGFMT po/hu.msg 381 translated, 4 fuzzy, 6 untranslated.
565 translated.
579 translated.
MSGFMT po/ja.msg 520 translated.
MSGFMT po/it.msg MSGFMT po/nb.msg MSGFMT po/pt_br.msg 546 translated, 1 untranslated.
519 translated, 1 untranslated.
MSGFMT po/pt_pt.msg 474 translated, 39 untranslated.
514 translated.
MSGFMT po/ru.msg 520 translated.
MSGFMT po/sv.msg MSGFMT po/vi.msg MSGFMT po/zh_cn.msg 550 translated.
547 translated.
GEN git-gui
579 translated.
INDEX lib/
543 translated.
366 translated, 7 fuzzy, 17 untranslated.
SUBDIR gitk-git
Generating catalog po/bg.msg
msgfmt --statistics --tcl po/bg.po -l bg -d po/
Generating catalog po/ca.msg
msgfmt --statistics --tcl po/ca.po -l ca -d po/
* new Tcl/Tk interpreter location
Generating catalog po/de.msg
msgfmt --statistics --tcl po/de.po -l de -d po/
Generating catalog po/es.msg
msgfmt --statistics --tcl po/es.po -l es -d po/
Generating catalog po/fr.msg
msgfmt --statistics --tcl po/fr.po -l fr -d po/
307 translated messages.
317 translated messages.
Generating catalog po/hu.msg
msgfmt --statistics --tcl po/hu.po -l hu -d po/
Generating catalog po/it.msg
307 translated messages.
msgfmt --statistics --tcl po/it.po -l it -d po/
184 translated messages, 46 fuzzy translations, 77 untranslated messages.
311 translated messages.
Generating catalog po/ja.msg
msgfmt --statistics --tcl po/ja.po -l ja -d po/
Generating catalog po/pt_br.msg
msgfmt --statistics --tcl po/pt_br.po -l pt_br -d po/
274 translated messages, 17 fuzzy translations, 16 untranslated messages.
277 translated messages, 18 fuzzy translations, 12 untranslated messages.
Generating catalog po/pt_pt.msg
msgfmt --statistics --tcl po/pt_pt.po -l pt_pt -d po/
Generating catalog po/ru.msg
msgfmt --statistics --tcl po/ru.po -l ru -d po/
311 translated messages.
Generating catalog po/sv.msg
msgfmt --statistics --tcl po/sv.po -l sv -d po/
279 translated messages, 16 fuzzy translations, 12 untranslated messages.
311 translated messages.
Generating catalog po/vi.msg
msgfmt --statistics --tcl po/vi.po -l vi -d po/
Generating catalog po/zh_cn.msg
msgfmt --statistics --tcl po/zh_cn.po -l zh_cn -d po/
GEN gitk-wish
311 translated messages.
317 translated messages.
307 translated messages.
317 translated messages.
SUBDIR templates
MKDIR -p po/build/locale/bg/LC_MESSAGES
MSGFMT po/build/locale/bg/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/ca/LC_MESSAGES
MSGFMT po/build/locale/ca/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/de/LC_MESSAGES
MKDIR -p po/build/locale/el/LC_MESSAGES
MSGFMT po/build/locale/de/LC_MESSAGES/git.mo
MSGFMT po/build/locale/el/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/es/LC_MESSAGES
MSGFMT po/build/locale/es/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/fr/LC_MESSAGES
MSGFMT po/build/locale/fr/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/id/LC_MESSAGES
MSGFMT po/build/locale/id/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/is/LC_MESSAGES
MSGFMT po/build/locale/is/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/it/LC_MESSAGES
MSGFMT po/build/locale/it/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/ko/LC_MESSAGES
MSGFMT po/build/locale/ko/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/pl/LC_MESSAGES
MSGFMT po/build/locale/pl/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/pt_PT/LC_MESSAGES
MSGFMT po/build/locale/pt_PT/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/ru/LC_MESSAGES
MSGFMT po/build/locale/ru/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/sv/LC_MESSAGES
MSGFMT po/build/locale/sv/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/tr/LC_MESSAGES
MSGFMT po/build/locale/tr/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/vi/LC_MESSAGES
MSGFMT po/build/locale/vi/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/zh_CN/LC_MESSAGES
MSGFMT po/build/locale/zh_CN/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/zh_TW/LC_MESSAGES
MSGFMT po/build/locale/zh_TW/LC_MESSAGES/git.mo
MKDIR -p perl/build/lib
GEN perl/build/lib/Git.pm
MKDIR -p perl/build/lib/Git
GEN perl/build/lib/Git/IndexInfo.pm
GEN perl/build/lib/Git/LoadCPAN.pm
GEN perl/build/lib/Git/Packet.pm
GEN perl/build/lib/Git/I18N.pm
GEN perl/build/lib/Git/SVN.pm
MKDIR -p perl/build/lib/Git/LoadCPAN
GEN perl/build/lib/Git/LoadCPAN/Error.pm
MKDIR -p perl/build/lib/Git/SVN
GEN perl/build/lib/Git/SVN/Fetcher.pm
GEN perl/build/lib/Git/SVN/GlobSpec.pm
GEN perl/build/lib/Git/SVN/Log.pm
GEN perl/build/lib/Git/SVN/Editor.pm
GEN perl/build/lib/Git/SVN/Migration.pm
GEN perl/build/lib/Git/SVN/Prompt.pm
GEN perl/build/lib/Git/SVN/Ra.pm
GEN perl/build/lib/Git/SVN/Utils.pm
MKDIR -p perl/build/lib/Git/LoadCPAN/Mail
GEN perl/build/lib/Git/LoadCPAN/Mail/Address.pm
MKDIR -p perl/build/lib/Git/SVN/Memoize
GEN perl/build/lib/Git/SVN/Memoize/YAML.pm
MKDIR -p perl/build/lib/FromCPAN
GEN perl/build/lib/FromCPAN/Error.pm
MKDIR -p perl/build/lib/FromCPAN/Mail
GEN perl/build/lib/FromCPAN/Mail/Address.pm
CC t/helper/test-fake-ssh.o
CC reftable/basics_test.o
CC reftable/block_test.o
CC reftable/dump.o
CC reftable/merged_test.o
CC reftable/pq_test.o
CC reftable/record_test.o
CC reftable/readwrite_test.o
CC reftable/refname_test.o
CC reftable/stack_test.o
CC reftable/test_framework.o
CC reftable/tree_test.o
CC t/helper/test-tool.o
CC t/helper/test-advise.o
CC t/helper/test-bitmap.o
CC t/helper/test-bloom.o
CC t/helper/test-chmtime.o
CC t/helper/test-config.o
CC t/helper/test-crontab.o
CC t/helper/test-csprng.o
CC t/helper/test-ctype.o
CC t/helper/test-date.o
CC t/helper/test-delta.o
CC t/helper/test-dir-iterator.o
CC t/helper/test-drop-caches.o
CC t/helper/test-dump-cache-tree.o
CC t/helper/test-dump-fsmonitor.o
CC t/helper/test-dump-split-index.o
CC t/helper/test-dump-untracked-cache.o
CC t/helper/test-example-decorate.o
CC t/helper/test-fast-rebase.o
CC t/helper/test-fsmonitor-client.o
CC t/helper/test-genrandom.o
CC t/helper/test-genzeros.o
CC t/helper/test-getcwd.o
CC t/helper/test-hash-speed.o
CC t/helper/test-hash.o
CC t/helper/test-hashmap.o
CC t/helper/test-hexdump.o
CC t/helper/test-index-version.o
CC t/helper/test-json-writer.o
CC t/helper/test-lazy-init-name-hash.o
CC t/helper/test-match-trees.o
CC t/helper/test-mergesort.o
CC t/helper/test-mktemp.o
CC t/helper/test-oid-array.o
CC t/helper/test-oidmap.o
CC t/helper/test-oidtree.o
CC t/helper/test-online-cpus.o
CC t/helper/test-pack-mtimes.o
CC t/helper/test-parse-options.o
CC t/helper/test-parse-pathspec-file.o
CC t/helper/test-partial-clone.o
CC t/helper/test-path-utils.o
CC t/helper/test-pcre2-config.o
CC t/helper/test-pkt-line.o
CC t/helper/test-prio-queue.o
CC t/helper/test-proc-receive.o
CC t/helper/test-progress.o
CC t/helper/test-reach.o
CC t/helper/test-read-cache.o
CC t/helper/test-read-graph.o
CC t/helper/test-read-midx.o
CC t/helper/test-ref-store.o
CC t/helper/test-reftable.o
CC t/helper/test-regex.o
CC t/helper/test-repository.o
CC t/helper/test-revision-walking.o
CC t/helper/test-run-command.o
CC t/helper/test-scrap-cache-tree.o
CC t/helper/test-serve-v2.o
CC t/helper/test-sha1.o
CC t/helper/test-sha256.o
CC t/helper/test-sigchain.o
CC t/helper/test-simple-ipc.o
CC t/helper/test-strcmp-offset.o
CC t/helper/test-string-list.o
CC t/helper/test-submodule-config.o
CC t/helper/test-submodule-nested-repo-config.o
CC t/helper/test-subprocess.o
CC t/helper/test-trace2.o
CC t/helper/test-urlmatch-normalization.o
CC t/helper/test-userdiff.o
CC t/helper/test-wildmatch.o
CC t/helper/test-windows-named-pipe.o
CC t/helper/test-write-cache.o
CC t/helper/test-xml-encode.o
MKDIR -p bin-wrappers
GEN bin-wrappers/git
GEN bin-wrappers/git-receive-pack
GEN bin-wrappers/git-shell
GEN bin-wrappers/git-upload-archive
GEN bin-wrappers/git-upload-pack
GEN bin-wrappers/git-cvsserver
GEN bin-wrappers/test-fake-ssh
GEN bin-wrappers/test-tool
AR reftable/libreftable_test.a
LINK t/helper/test-fake-ssh
LINK t/helper/test-tool
ek@apok:~/src/git ((28c2a35997...)|BISECTING)$ make prefix="$HOME/mygit" install
SUBDIR git-gui
SUBDIR gitk-git
SUBDIR templates
install -d -m 755 '/home/ek/mygit/bin'
install -d -m 755 '/home/ek/mygit/libexec/git-core'
install git-daemon git-http-backend git-imap-send git-sh-i18n--envsubst git-shell git-http-fetch git-http-push git-remote-http git-remote-https git-remote-ftp git-remote-ftps '/home/ek/mygit/libexec/git-core'
install git-bisect git-difftool--helper git-filter-branch git-merge-octopus git-merge-one-file git-merge-resolve git-mergetool git-quiltimport git-request-pull git-submodule git-web--browse git-add--interactive git-archimport git-cvsexportcommit git-cvsimport git-cvsserver git-send-email git-svn git-p4 git-instaweb '/home/ek/mygit/libexec/git-core'
install -m 644 git-mergetool--lib git-sh-i18n git-sh-setup '/home/ek/mygit/libexec/git-core'
install git git-receive-pack git-shell git-upload-archive git-upload-pack '/home/ek/mygit/bin'
install git-cvsserver '/home/ek/mygit/bin'
make -C templates DESTDIR='' install
make[1]: Entering directory '/home/ek/src/git/templates'
install -d -m 755 '/home/ek/mygit/share/git-core/templates'
(cd blt && tar cf - .) | \
(cd '/home/ek/mygit/share/git-core/templates' && umask 022 && tar xof -)
make[1]: Leaving directory '/home/ek/src/git/templates'
install -d -m 755 '/home/ek/mygit/libexec/git-core/mergetools'
install -m 644 mergetools/* '/home/ek/mygit/libexec/git-core/mergetools'
install -d -m 755 '/home/ek/mygit/share/locale'
(cd po/build/locale && tar cf - .) | \
(cd '/home/ek/mygit/share/locale' && umask 022 && tar xof -)
install -d -m 755 '/home/ek/mygit/share/perl5'
(cd perl/build/lib && tar cf - .) | \
(cd '/home/ek/mygit/share/perl5' && umask 022 && tar xof -)
make -C gitweb install
make[1]: Entering directory '/home/ek/src/git/gitweb'
make[2]: Entering directory '/home/ek/src/git'
make[2]: 'GIT-VERSION-FILE' is up to date.
make[2]: Leaving directory '/home/ek/src/git'
GEN gitweb.cgi
GEN static/gitweb.js
install -d -m 755 '/home/ek/mygit/share/gitweb'
install -m 755 gitweb.cgi '/home/ek/mygit/share/gitweb'
install -d -m 755 '/home/ek/mygit/share/gitweb/static'
install -m 644 static/gitweb.js static/gitweb.css static/git-logo.png static/git-favicon.png '/home/ek/mygit/share/gitweb/static'
make[1]: Leaving directory '/home/ek/src/git/gitweb'
make -C gitk-git install
make[1]: Entering directory '/home/ek/src/git/gitk-git'
install -d -m 755 '/home/ek/mygit/bin'
install -m 755 gitk-wish '/home/ek/mygit/bin'/gitk
install -d -m 755 '/home/ek/mygit/share/gitk/lib/msgs'
install -m 644 po/bg.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/ca.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/de.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/es.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/fr.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/hu.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/it.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/ja.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/pt_br.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/pt_pt.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/ru.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/sv.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/vi.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/zh_cn.msg '/home/ek/mygit/share/gitk/lib/msgs' && true
make[1]: Leaving directory '/home/ek/src/git/gitk-git'
make -C git-gui gitexecdir='/home/ek/mygit/libexec/git-core' install
make[1]: Entering directory '/home/ek/src/git/git-gui'
DEST /home/ek/mygit/libexec/git-core
INSTALL 755 git-gui
INSTALL 755 git-gui--askpass
LINK git-citool -> git-gui
DEST /home/ek/mygit/share/git-gui/lib
INSTALL 644 tclIndex
INSTALL 644 about.tcl
INSTALL 644 blame.tcl
INSTALL 644 branch_checkout.tcl
INSTALL 644 branch_create.tcl
INSTALL 644 branch_delete.tcl
INSTALL 644 branch_rename.tcl
INSTALL 644 branch.tcl
INSTALL 644 browser.tcl
INSTALL 644 checkout_op.tcl
INSTALL 644 choose_font.tcl
INSTALL 644 choose_repository.tcl
INSTALL 644 choose_rev.tcl
INSTALL 644 chord.tcl
INSTALL 644 class.tcl
INSTALL 644 commit.tcl
INSTALL 644 console.tcl
INSTALL 644 database.tcl
INSTALL 644 date.tcl
INSTALL 644 diff.tcl
INSTALL 644 encoding.tcl
INSTALL 644 error.tcl
INSTALL 644 index.tcl
INSTALL 644 line.tcl
INSTALL 644 logo.tcl
INSTALL 644 merge.tcl
INSTALL 644 mergetool.tcl
INSTALL 644 option.tcl
INSTALL 644 remote_add.tcl
INSTALL 644 remote_branch_delete.tcl
INSTALL 644 remote.tcl
INSTALL 644 search.tcl
INSTALL 644 shortcut.tcl
INSTALL 644 spellcheck.tcl
INSTALL 644 sshkey.tcl
INSTALL 644 status_bar.tcl
INSTALL 644 themed.tcl
INSTALL 644 tools_dlg.tcl
INSTALL 644 tools.tcl
INSTALL 644 transport.tcl
INSTALL 644 win32.tcl
INSTALL 644 git-gui.ico
INSTALL 644 win32_shortcut.js
DEST /home/ek/mygit/share/git-gui/lib/msgs
INSTALL 644 bg.msg
INSTALL 644 de.msg
INSTALL 644 el.msg
INSTALL 644 fr.msg
INSTALL 644 hu.msg
INSTALL 644 it.msg
INSTALL 644 ja.msg
INSTALL 644 nb.msg
INSTALL 644 pt_br.msg
INSTALL 644 pt_pt.msg
INSTALL 644 ru.msg
INSTALL 644 sv.msg
INSTALL 644 vi.msg
INSTALL 644 zh_cn.msg
make[1]: Leaving directory '/home/ek/src/git/git-gui'
bindir=$(cd '/home/ek/mygit/bin' && pwd) && \
execdir=$(cd '/home/ek/mygit/libexec/git-core' && pwd) && \
destdir_from_execdir_SQ=$(echo 'libexec/git-core' | sed -e 's|[^/][^/]*|..|g') && \
{ test "$bindir/" = "$execdir/" || \
for p in git git-shell git-cvsserver; do \
rm -f "$execdir/$p" && \
test -n "" && \
ln -s "$destdir_from_execdir_SQ/bin/$p" "$execdir/$p" || \
{ test -z "" && \
ln "$bindir/$p" "$execdir/$p" 2>/dev/null || \
cp "$bindir/$p" "$execdir/$p" || exit; } \
done; \
} && \
for p in git-receive-pack git-upload-archive git-upload-pack; do \
rm -f "$bindir/$p" && \
test -n "" && \
ln -s "git" "$bindir/$p" || \
{ test -z "" && \
ln "$bindir/git" "$bindir/$p" 2>/dev/null || \
ln -s "git" "$bindir/$p" 2>/dev/null || \
cp "$bindir/git" "$bindir/$p" || exit; }; \
done && \
for p in git-add git-am git-annotate git-apply git-archive git-bisect--helper git-blame git-branch git-bugreport git-bundle git-cat-file git-check-attr git-check-ignore git-check-mailmap git-check-ref-format git-checkout--worker git-checkout-index git-checkout git-clean git-clone git-column git-commit-graph git-commit-tree git-commit git-config git-count-objects git-credential-cache--daemon git-credential-cache git-credential-store git-credential git-describe git-diff-files git-diff-index git-diff-tree git-diff git-difftool git-env--helper git-fast-export git-fast-import git-fetch-pack git-fetch git-fmt-merge-msg git-for-each-ref git-for-each-repo git-fsck git-fsmonitor--daemon git-gc git-get-tar-commit-id git-grep git-hash-object git-help git-hook git-index-pack git-init-db git-interpret-trailers git-log git-ls-files git-ls-remote git-ls-tree git-mailinfo git-mailsplit git-merge-base git-merge-file git-merge-index git-merge-ours git-merge-recursive git-merge-tree git-merge git-mktag git-mktree git-multi-pack-index git-mv git-name-rev git-notes git-pack-objects git-pack-redundant git-pack-refs git-patch-id git-prune-packed git-prune git-pull git-push git-range-diff git-read-tree git-rebase git-receive-pack git-reflog git-remote-ext git-remote-fd git-remote git-repack git-replace git-rerere git-reset git-rev-list git-rev-parse git-revert git-rm git-send-pack git-shortlog git-show-branch git-show-index git-show-ref git-sparse-checkout git-stash git-stripspace git-submodule--helper git-symbolic-ref git-tag git-unpack-file git-unpack-objects git-update-index git-update-ref git-update-server-info git-upload-archive git-upload-pack git-var git-verify-commit git-verify-pack git-verify-tag git-worktree git-write-tree git-cherry git-cherry-pick git-format-patch git-fsck-objects git-init git-maintenance git-merge-subtree git-restore git-show git-stage git-status git-switch git-whatchanged; do \
rm -f "$execdir/$p" && \
if test -z ""; \
then \
test -n "" && \
ln -s "$destdir_from_execdir_SQ/bin/git" "$execdir/$p" || \
{ test -z "" && \
ln "$execdir/git" "$execdir/$p" 2>/dev/null || \
ln -s "git" "$execdir/$p" 2>/dev/null || \
cp "$execdir/git" "$execdir/$p" || exit; }; \
fi \
done && \
remote_curl_aliases="git-remote-https git-remote-ftp git-remote-ftps" && \
for p in $remote_curl_aliases; do \
rm -f "$execdir/$p" && \
test -n "" && \
ln -s "git-remote-http" "$execdir/$p" || \
{ test -z "" && \
ln "$execdir/git-remote-http" "$execdir/$p" 2>/dev/null || \
ln -s "git-remote-http" "$execdir/$p" 2>/dev/null || \
cp "$execdir/git-remote-http" "$execdir/$p" || exit; } \
done
ek@apok:~/src/git ((28c2a35997...)|BISECTING)$ pushd ~/tmp
~/tmp ~/src/git
ek@apok:~/tmp$ PATH="$HOME/mygit/bin:$PATH" GIT_SSH_COMMAND='{ pid="$(ps -o ppid:1= -p "$$")"; ps -o pid:1=,cmd= -p "$pid"; awk -v RS=\\0 "/^GIT_CONFIG/ { print \" \" \$0 }" "/proc/$pid/environ"; } 1>&2; ssh' GIT_CONFIG_COUNT=1 GIT_CONFIG_KEY_0=foo.bar GIT_CONFIG_VALUE_0=baz git clone --recurse-submodules git@github.com:EliahKagan/has-nested-submodule.git
Cloning into 'has-nested-submodule'...
1040875 git clone --recurse-submodules git@github.com:EliahKagan/has-nested-submodule.git
GIT_CONFIG_COUNT=1
GIT_CONFIG_KEY_0=foo.bar
GIT_CONFIG_VALUE_0=baz
remote: Enumerating objects: 4, done.
remote: Counting objects: 100% (4/4), done.
remote: Compressing objects: 100% (4/4), done.
remote: Total 4 (delta 0), reused 4 (delta 0), pack-reused 0
Receiving objects: 100% (4/4), done.
Submodule 'has-submodule' (git@github.com:EliahKagan/has-submodule.git) registered for path 'has-submodule'
Cloning into '/home/ek/tmp/has-nested-submodule/has-submodule'...
1040916 /home/ek/mygit/libexec/git-core/git clone --no-checkout --progress --separate-git-dir /home/ek/tmp/has-nested-submodule/.git/modules/has-submodule --no-single-branch -- git@github.com:EliahKagan/has-submodule.git /home/ek/tmp/has-nested-submodule/has-submodule
GIT_CONFIG_COUNT=1
GIT_CONFIG_KEY_0=foo.bar
GIT_CONFIG_VALUE_0=baz
remote: Enumerating objects: 4, done.
remote: Counting objects: 100% (4/4), done.
remote: Compressing objects: 100% (4/4), done.
remote: Total 4 (delta 0), reused 4 (delta 0), pack-reused 0
Receiving objects: 100% (4/4), done.
Submodule path 'has-submodule': checked out '8de4a40d782ddfd338f2ada312714d60541c6f80'
Submodule 'trivial' (git@github.com:EliahKagan/trivial.git) registered for path 'has-submodule/trivial'
Cloning into '/home/ek/tmp/has-nested-submodule/has-submodule/trivial'...
1040935 /home/ek/mygit/libexec/git-core/git clone --no-checkout --progress --separate-git-dir /home/ek/tmp/has-nested-submodule/.git/modules/has-submodule/modules/trivial --no-single-branch -- git@github.com:EliahKagan/trivial.git /home/ek/tmp/has-nested-submodule/has-submodule/trivial
GIT_CONFIG_COUNT=1
GIT_CONFIG_KEY_0=foo.bar
GIT_CONFIG_VALUE_0=baz
remote: Enumerating objects: 3, done.
remote: Counting objects: 100% (3/3), done.
remote: Compressing objects: 100% (2/2), done.
remote: Total 3 (delta 0), reused 3 (delta 0), pack-reused 0
Receiving objects: 100% (3/3), done.
Submodule path 'has-submodule/trivial': checked out '656a18dc1e48e035a05a72011a62bca5f41fa07e'
ek@apok:~/tmp$ rm -rf has-nested-submodule/
ek@apok:~/tmp$ popd
~/src/git
ek@apok:~/src/git ((28c2a35997...)|BISECTING)$ rm -r ~/mygit
ek@apok:~/src/git ((28c2a35997...)|BISECTING)$ gix clean -xde
removing .depend/ (🗑️)
removing GIT-BUILD-OPTIONS (🗑️)
removing GIT-CFLAGS (🗑️)
removing GIT-LDFLAGS (🗑️)
removing GIT-PERL-DEFINES (🗑️)
removing GIT-PERL-HEADER (🗑️)
removing GIT-PREFIX (🗑️)
removing GIT-PYTHON-VARS (🗑️)
removing GIT-SCRIPT-DEFINES (🗑️)
removing GIT-USER-AGENT (🗑️)
removing GIT-VERSION-FILE (🗑️)
removing abspath.o (🗑️)
removing add-interactive.o (🗑️)
removing add-patch.o (🗑️)
removing advice.o (🗑️)
removing alias.o (🗑️)
removing alloc.o (🗑️)
removing apply.o (🗑️)
removing archive-tar.o (🗑️)
removing archive-zip.o (🗑️)
removing archive.o (🗑️)
removing attr.o (🗑️)
removing base85.o (🗑️)
removing bin-wrappers/ (🗑️)
removing bisect.o (🗑️)
removing blame.o (🗑️)
removing blob.o (🗑️)
removing bloom.o (🗑️)
removing branch.o (🗑️)
removing builtin/.depend/ (🗑️)
removing builtin/add.o (🗑️)
removing builtin/am.o (🗑️)
removing builtin/annotate.o (🗑️)
removing builtin/apply.o (🗑️)
removing builtin/archive.o (🗑️)
removing builtin/bisect--helper.o (🗑️)
removing builtin/blame.o (🗑️)
removing builtin/branch.o (🗑️)
removing builtin/bugreport.o (🗑️)
removing builtin/bundle.o (🗑️)
removing builtin/cat-file.o (🗑️)
removing builtin/check-attr.o (🗑️)
removing builtin/check-ignore.o (🗑️)
removing builtin/check-mailmap.o (🗑️)
removing builtin/check-ref-format.o (🗑️)
removing builtin/checkout--worker.o (🗑️)
removing builtin/checkout-index.o (🗑️)
removing builtin/checkout.o (🗑️)
removing builtin/clean.o (🗑️)
removing builtin/clone.o (🗑️)
removing builtin/column.o (🗑️)
removing builtin/commit-graph.o (🗑️)
removing builtin/commit-tree.o (🗑️)
removing builtin/commit.o (🗑️)
removing builtin/config.o (🗑️)
removing builtin/count-objects.o (🗑️)
removing builtin/credential-cache--daemon.o (🗑️)
removing builtin/credential-cache.o (🗑️)
removing builtin/credential-store.o (🗑️)
removing builtin/credential.o (🗑️)
removing builtin/describe.o (🗑️)
removing builtin/diff-files.o (🗑️)
removing builtin/diff-index.o (🗑️)
removing builtin/diff-tree.o (🗑️)
removing builtin/diff.o (🗑️)
removing builtin/difftool.o (🗑️)
removing builtin/env--helper.o (🗑️)
removing builtin/fast-export.o (🗑️)
removing builtin/fast-import.o (🗑️)
removing builtin/fetch-pack.o (🗑️)
removing builtin/fetch.o (🗑️)
removing builtin/fmt-merge-msg.o (🗑️)
removing builtin/for-each-ref.o (🗑️)
removing builtin/for-each-repo.o (🗑️)
removing builtin/fsck.o (🗑️)
removing builtin/fsmonitor--daemon.o (🗑️)
removing builtin/gc.o (🗑️)
removing builtin/get-tar-commit-id.o (🗑️)
removing builtin/grep.o (🗑️)
removing builtin/hash-object.o (🗑️)
removing builtin/help.o (🗑️)
removing builtin/hook.o (🗑️)
removing builtin/index-pack.o (🗑️)
removing builtin/init-db.o (🗑️)
removing builtin/interpret-trailers.o (🗑️)
removing builtin/log.o (🗑️)
removing builtin/ls-files.o (🗑️)
removing builtin/ls-remote.o (🗑️)
removing builtin/ls-tree.o (🗑️)
removing builtin/mailinfo.o (🗑️)
removing builtin/mailsplit.o (🗑️)
removing builtin/merge-base.o (🗑️)
removing builtin/merge-file.o (🗑️)
removing builtin/merge-index.o (🗑️)
removing builtin/merge-ours.o (🗑️)
removing builtin/merge-recursive.o (🗑️)
removing builtin/merge-tree.o (🗑️)
removing builtin/merge.o (🗑️)
removing builtin/mktag.o (🗑️)
removing builtin/mktree.o (🗑️)
removing builtin/multi-pack-index.o (🗑️)
removing builtin/mv.o (🗑️)
removing builtin/name-rev.o (🗑️)
removing builtin/notes.o (🗑️)
removing builtin/pack-objects.o (🗑️)
removing builtin/pack-redundant.o (🗑️)
removing builtin/pack-refs.o (🗑️)
removing builtin/patch-id.o (🗑️)
removing builtin/prune-packed.o (🗑️)
removing builtin/prune.o (🗑️)
removing builtin/pull.o (🗑️)
removing builtin/push.o (🗑️)
removing builtin/range-diff.o (🗑️)
removing builtin/read-tree.o (🗑️)
removing builtin/rebase.o (🗑️)
removing builtin/receive-pack.o (🗑️)
removing builtin/reflog.o (🗑️)
removing builtin/remote-ext.o (🗑️)
removing builtin/remote-fd.o (🗑️)
removing builtin/remote.o (🗑️)
removing builtin/repack.o (🗑️)
removing builtin/replace.o (🗑️)
removing builtin/rerere.o (🗑️)
removing builtin/reset.o (🗑️)
removing builtin/rev-list.o (🗑️)
removing builtin/rev-parse.o (🗑️)
removing builtin/revert.o (🗑️)
removing builtin/rm.o (🗑️)
removing builtin/send-pack.o (🗑️)
removing builtin/shortlog.o (🗑️)
removing builtin/show-branch.o (🗑️)
removing builtin/show-index.o (🗑️)
removing builtin/show-ref.o (🗑️)
removing builtin/sparse-checkout.o (🗑️)
removing builtin/stash.o (🗑️)
removing builtin/stripspace.o (🗑️)
removing builtin/submodule--helper.o (🗑️)
removing builtin/symbolic-ref.o (🗑️)
removing builtin/tag.o (🗑️)
removing builtin/unpack-file.o (🗑️)
removing builtin/unpack-objects.o (🗑️)
removing builtin/update-index.o (🗑️)
removing builtin/update-ref.o (🗑️)
removing builtin/update-server-info.o (🗑️)
removing builtin/upload-archive.o (🗑️)
removing builtin/upload-pack.o (🗑️)
removing builtin/var.o (🗑️)
removing builtin/verify-commit.o (🗑️)
removing builtin/verify-pack.o (🗑️)
removing builtin/verify-tag.o (🗑️)
removing builtin/worktree.o (🗑️)
removing builtin/write-tree.o (🗑️)
removing bulk-checkin.o (🗑️)
removing bundle.o (🗑️)
removing cache-tree.o (🗑️)
removing cbtree.o (🗑️)
removing chdir-notify.o (🗑️)
removing checkout.o (🗑️)
removing chunk-format.o (🗑️)
removing color.o (🗑️)
removing column.o (🗑️)
removing combine-diff.o (🗑️)
removing command-list.h (🗑️)
removing commit-graph.o (🗑️)
removing commit-reach.o (🗑️)
removing commit.o (🗑️)
removing common-main.o (🗑️)
removing compat/.depend/ (🗑️)
removing compat/fopen.o (🗑️)
removing compat/linux/.depend/ (🗑️)
removing compat/linux/procinfo.o (🗑️)
removing compat/obstack.o (🗑️)
removing compat/qsort_s.o (🗑️)
removing compat/simple-ipc/.depend/ (🗑️)
removing compat/simple-ipc/ipc-shared.o (🗑️)
removing compat/simple-ipc/ipc-unix-socket.o (🗑️)
removing compat/strlcpy.o (🗑️)
removing compat/terminal.o (🗑️)
removing compat/zlib-uncompress2.o (🗑️)
removing config-list.h (🗑️)
removing config.o (🗑️)
removing connect.o (🗑️)
removing connected.o (🗑️)
removing contrib/scalar/.depend/ (🗑️)
removing convert.o (🗑️)
removing copy.o (🗑️)
removing credential.o (🗑️)
removing csum-file.o (🗑️)
removing ctype.o (🗑️)
removing daemon.o (🗑️)
removing date.o (🗑️)
removing decorate.o (🗑️)
removing delta-islands.o (🗑️)
removing diff-delta.o (🗑️)
removing diff-lib.o (🗑️)
removing diff-merges.o (🗑️)
removing diff-no-index.o (🗑️)
removing diff.o (🗑️)
removing diffcore-break.o (🗑️)
removing diffcore-delta.o (🗑️)
removing diffcore-order.o (🗑️)
removing diffcore-pickaxe.o (🗑️)
removing diffcore-rename.o (🗑️)
removing diffcore-rotate.o (🗑️)
removing dir-iterator.o (🗑️)
removing dir.o (🗑️)
removing editor.o (🗑️)
removing entry.o (🗑️)
removing environment.o (🗑️)
removing ewah/.depend/ (🗑️)
removing ewah/bitmap.o (🗑️)
removing ewah/ewah_bitmap.o (🗑️)
removing ewah/ewah_io.o (🗑️)
removing ewah/ewah_rlw.o (🗑️)
removing exec-cmd.o (🗑️)
removing fetch-negotiator.o (🗑️)
removing fetch-pack.o (🗑️)
removing fmt-merge-msg.o (🗑️)
removing fsck.o (🗑️)
removing fsmonitor-ipc.o (🗑️)
removing fsmonitor-settings.o (🗑️)
removing fsmonitor.o (🗑️)
removing fuzz-commit-graph.o (🗑️)
removing fuzz-pack-headers.o (🗑️)
removing fuzz-pack-idx.o (🗑️)
removing gettext.o (🗑️)
removing git (🗑️)
removing git-add (🗑️)
removing git-add--interactive (🗑️)
removing git-am (🗑️)
removing git-annotate (🗑️)
removing git-apply (🗑️)
removing git-archimport (🗑️)
removing git-archive (🗑️)
removing git-bisect (🗑️)
removing git-bisect--helper (🗑️)
removing git-blame (🗑️)
removing git-branch (🗑️)
removing git-bugreport (🗑️)
removing git-bundle (🗑️)
removing git-cat-file (🗑️)
removing git-check-attr (🗑️)
removing git-check-ignore (🗑️)
removing git-check-mailmap (🗑️)
removing git-check-ref-format (🗑️)
removing git-checkout (🗑️)
removing git-checkout--worker (🗑️)
removing git-checkout-index (🗑️)
removing git-cherry (🗑️)
removing git-cherry-pick (🗑️)
removing git-clean (🗑️)
removing git-clone (🗑️)
removing git-column (🗑️)
removing git-commit (🗑️)
removing git-commit-graph (🗑️)
removing git-commit-tree (🗑️)
removing git-config (🗑️)
removing git-count-objects (🗑️)
removing git-credential (🗑️)
removing git-credential-cache (🗑️)
removing git-credential-cache--daemon (🗑️)
removing git-credential-store (🗑️)
removing git-cvsexportcommit (🗑️)
removing git-cvsimport (🗑️)
removing git-cvsserver (🗑️)
removing git-daemon (🗑️)
removing git-describe (🗑️)
removing git-diff (🗑️)
removing git-diff-files (🗑️)
removing git-diff-index (🗑️)
removing git-diff-tree (🗑️)
removing git-difftool (🗑️)
removing git-difftool--helper (🗑️)
removing git-env--helper (🗑️)
removing git-fast-export (🗑️)
removing git-fast-import (🗑️)
removing git-fetch (🗑️)
removing git-fetch-pack (🗑️)
removing git-filter-branch (🗑️)
removing git-fmt-merge-msg (🗑️)
removing git-for-each-ref (🗑️)
removing git-for-each-repo (🗑️)
removing git-format-patch (🗑️)
removing git-fsck (🗑️)
removing git-fsck-objects (🗑️)
removing git-fsmonitor--daemon (🗑️)
removing git-gc (🗑️)
removing git-get-tar-commit-id (🗑️)
removing git-grep (🗑️)
removing git-gui/GIT-GUI-VARS (🗑️)
removing git-gui/GIT-VERSION-FILE (🗑️)
removing git-gui/git-gui (🗑️)
removing git-gui/lib/tclIndex (🗑️)
removing git-gui/po/bg.msg (🗑️)
removing git-gui/po/de.msg (🗑️)
removing git-gui/po/el.msg (🗑️)
removing git-gui/po/fr.msg (🗑️)
removing git-gui/po/hu.msg (🗑️)
removing git-gui/po/it.msg (🗑️)
removing git-gui/po/ja.msg (🗑️)
removing git-gui/po/nb.msg (🗑️)
removing git-gui/po/pt_br.msg (🗑️)
removing git-gui/po/pt_pt.msg (🗑️)
removing git-gui/po/ru.msg (🗑️)
removing git-gui/po/sv.msg (🗑️)
removing git-gui/po/vi.msg (🗑️)
removing git-gui/po/zh_cn.msg (🗑️)
removing git-hash-object (🗑️)
removing git-help (🗑️)
removing git-hook (🗑️)
removing git-http-backend (🗑️)
removing git-http-fetch (🗑️)
removing git-http-push (🗑️)
removing git-imap-send (🗑️)
removing git-index-pack (🗑️)
removing git-init (🗑️)
removing git-init-db (🗑️)
removing git-instaweb (🗑️)
removing git-interpret-trailers (🗑️)
removing git-log (🗑️)
removing git-ls-files (🗑️)
removing git-ls-remote (🗑️)
removing git-ls-tree (🗑️)
removing git-mailinfo (🗑️)
removing git-mailsplit (🗑️)
removing git-maintenance (🗑️)
removing git-merge (🗑️)
removing git-merge-base (🗑️)
removing git-merge-file (🗑️)
removing git-merge-index (🗑️)
removing git-merge-octopus (🗑️)
removing git-merge-one-file (🗑️)
removing git-merge-ours (🗑️)
removing git-merge-recursive (🗑️)
removing git-merge-resolve (🗑️)
removing git-merge-subtree (🗑️)
removing git-merge-tree (🗑️)
removing git-mergetool (🗑️)
removing git-mergetool--lib (🗑️)
removing git-mktag (🗑️)
removing git-mktree (🗑️)
removing git-multi-pack-index (🗑️)
removing git-mv (🗑️)
removing git-name-rev (🗑️)
removing git-notes (🗑️)
removing git-p4 (🗑️)
removing git-pack-objects (🗑️)
removing git-pack-redundant (🗑️)
removing git-pack-refs (🗑️)
removing git-patch-id (🗑️)
removing git-prune (🗑️)
removing git-prune-packed (🗑️)
removing git-pull (🗑️)
removing git-push (🗑️)
removing git-quiltimport (🗑️)
removing git-range-diff (🗑️)
removing git-read-tree (🗑️)
removing git-rebase (🗑️)
removing git-receive-pack (🗑️)
removing git-reflog (🗑️)
removing git-remote (🗑️)
removing git-remote-ext (🗑️)
removing git-remote-fd (🗑️)
removing git-remote-ftp (🗑️)
removing git-remote-ftps (🗑️)
removing git-remote-http (🗑️)
removing git-remote-https (🗑️)
removing git-repack (🗑️)
removing git-replace (🗑️)
removing git-request-pull (🗑️)
removing git-rerere (🗑️)
removing git-reset (🗑️)
removing git-restore (🗑️)
removing git-rev-list (🗑️)
removing git-rev-parse (🗑️)
removing git-revert (🗑️)
removing git-rm (🗑️)
removing git-send-email (🗑️)
removing git-send-pack (🗑️)
removing git-sh-i18n (🗑️)
removing git-sh-i18n--envsubst (🗑️)
removing git-sh-setup (🗑️)
removing git-shell (🗑️)
removing git-shortlog (🗑️)
removing git-show (🗑️)
removing git-show-branch (🗑️)
removing git-show-index (🗑️)
removing git-show-ref (🗑️)
removing git-sparse-checkout (🗑️)
removing git-stage (🗑️)
removing git-stash (🗑️)
removing git-status (🗑️)
removing git-stripspace (🗑️)
removing git-submodule (🗑️)
removing git-submodule--helper (🗑️)
removing git-svn (🗑️)
removing git-switch (🗑️)
removing git-symbolic-ref (🗑️)
removing git-tag (🗑️)
removing git-unpack-file (🗑️)
removing git-unpack-objects (🗑️)
removing git-update-index (🗑️)
removing git-update-ref (🗑️)
removing git-update-server-info (🗑️)
removing git-upload-archive (🗑️)
removing git-upload-pack (🗑️)
removing git-var (🗑️)
removing git-verify-commit (🗑️)
removing git-verify-pack (🗑️)
removing git-verify-tag (🗑️)
removing git-web--browse (🗑️)
removing git-whatchanged (🗑️)
removing git-worktree (🗑️)
removing git-write-tree (🗑️)
removing git.o (🗑️)
removing gitk-git/GIT-TCLTK-VARS (🗑️)
removing gitk-git/gitk-wish (🗑️)
removing gitk-git/po/bg.msg (🗑️)
removing gitk-git/po/ca.msg (🗑️)
removing gitk-git/po/de.msg (🗑️)
removing gitk-git/po/es.msg (🗑️)
removing gitk-git/po/fr.msg (🗑️)
removing gitk-git/po/hu.msg (🗑️)
removing gitk-git/po/it.msg (🗑️)
removing gitk-git/po/ja.msg (🗑️)
removing gitk-git/po/pt_br.msg (🗑️)
removing gitk-git/po/pt_pt.msg (🗑️)
removing gitk-git/po/ru.msg (🗑️)
removing gitk-git/po/sv.msg (🗑️)
removing gitk-git/po/vi.msg (🗑️)
removing gitk-git/po/zh_cn.msg (🗑️)
removing gitweb/GITWEB-BUILD-OPTIONS (🗑️)
removing gitweb/gitweb.cgi (🗑️)
removing gitweb/static/gitweb.js (🗑️)
removing gpg-interface.o (🗑️)
removing graph.o (🗑️)
removing grep.o (🗑️)
removing hash-lookup.o (🗑️)
removing hashmap.o (🗑️)
removing help.o (🗑️)
removing hex.o (🗑️)
removing hook-list.h (🗑️)
removing hook.o (🗑️)
removing http-backend.o (🗑️)
removing http-fetch.o (🗑️)
removing http-push.o (🗑️)
removing http-walker.o (🗑️)
removing http.o (🗑️)
removing ident.o (🗑️)
removing imap-send.o (🗑️)
removing json-writer.o (🗑️)
removing kwset.o (🗑️)
removing levenshtein.o (🗑️)
removing libgit.a (🗑️)
removing line-log.o (🗑️)
removing line-range.o (🗑️)
removing linear-assignment.o (🗑️)
removing list-objects-filter-options.o (🗑️)
removing list-objects-filter.o (🗑️)
removing list-objects.o (🗑️)
removing ll-merge.o (🗑️)
removing lockfile.o (🗑️)
removing log-tree.o (🗑️)
removing ls-refs.o (🗑️)
removing mailinfo.o (🗑️)
removing mailmap.o (🗑️)
removing match-trees.o (🗑️)
removing mem-pool.o (🗑️)
removing merge-blobs.o (🗑️)
removing merge-ort-wrappers.o (🗑️)
removing merge-ort.o (🗑️)
removing merge-recursive.o (🗑️)
removing merge.o (🗑️)
removing mergesort.o (🗑️)
removing midx.o (🗑️)
removing name-hash.o (🗑️)
removing negotiator/.depend/ (🗑️)
removing negotiator/default.o (🗑️)
removing negotiator/noop.o (🗑️)
removing negotiator/skipping.o (🗑️)
removing notes-cache.o (🗑️)
removing notes-merge.o (🗑️)
removing notes-utils.o (🗑️)
removing notes.o (🗑️)
removing object-file.o (🗑️)
removing object-name.o (🗑️)
removing object.o (🗑️)
removing oid-array.o (🗑️)
removing oidmap.o (🗑️)
removing oidset.o (🗑️)
removing oidtree.o (🗑️)
removing pack-bitmap-write.o (🗑️)
removing pack-bitmap.o (🗑️)
removing pack-check.o (🗑️)
removing pack-mtimes.o (🗑️)
removing pack-objects.o (🗑️)
removing pack-revindex.o (🗑️)
removing pack-write.o (🗑️)
removing packfile.o (🗑️)
removing pager.o (🗑️)
removing parallel-checkout.o (🗑️)
removing parse-options-cb.o (🗑️)
removing parse-options.o (🗑️)
removing patch-delta.o (🗑️)
removing patch-ids.o (🗑️)
removing path.o (🗑️)
removing pathspec.o (🗑️)
removing perl/build/ (🗑️)
removing pkt-line.o (🗑️)
removing po/build/ (🗑️)
removing preload-index.o (🗑️)
removing pretty.o (🗑️)
removing prio-queue.o (🗑️)
removing progress.o (🗑️)
removing promisor-remote.o (🗑️)
removing prompt.o (🗑️)
removing protocol-caps.o (🗑️)
removing protocol.o (🗑️)
removing prune-packed.o (🗑️)
removing quote.o (🗑️)
removing range-diff.o (🗑️)
removing reachable.o (🗑️)
removing read-cache.o (🗑️)
removing rebase-interactive.o (🗑️)
removing rebase.o (🗑️)
removing ref-filter.o (🗑️)
removing reflog-walk.o (🗑️)
removing reflog.o (🗑️)
removing refs.o (🗑️)
removing refs/.depend/ (🗑️)
removing refs/debug.o (🗑️)
removing refs/files-backend.o (🗑️)
removing refs/iterator.o (🗑️)
removing refs/packed-backend.o (🗑️)
removing refs/ref-cache.o (🗑️)
removing refspec.o (🗑️)
removing reftable/.depend/ (🗑️)
removing reftable/basics.o (🗑️)
removing reftable/basics_test.o (🗑️)
removing reftable/block.o (🗑️)
removing reftable/block_test.o (🗑️)
removing reftable/blocksource.o (🗑️)
removing reftable/dump.o (🗑️)
removing reftable/error.o (🗑️)
removing reftable/generic.o (🗑️)
removing reftable/iter.o (🗑️)
removing reftable/libreftable.a (🗑️)
removing reftable/libreftable_test.a (🗑️)
removing reftable/merged.o (🗑️)
removing reftable/merged_test.o (🗑️)
removing reftable/pq.o (🗑️)
removing reftable/pq_test.o (🗑️)
removing reftable/publicbasics.o (🗑️)
removing reftable/reader.o (🗑️)
removing reftable/readwrite_test.o (🗑️)
removing reftable/record.o (🗑️)
removing reftable/record_test.o (🗑️)
removing reftable/refname.o (🗑️)
removing reftable/refname_test.o (🗑️)
removing reftable/stack.o (🗑️)
removing reftable/stack_test.o (🗑️)
removing reftable/test_framework.o (🗑️)
removing reftable/tree.o (🗑️)
removing reftable/tree_test.o (🗑️)
removing reftable/writer.o (🗑️)
removing remote-curl.o (🗑️)
removing remote.o (🗑️)
removing replace-object.o (🗑️)
removing repo-settings.o (🗑️)
removing repository.o (🗑️)
removing rerere.o (🗑️)
removing reset.o (🗑️)
removing resolve-undo.o (🗑️)
removing revision.o (🗑️)
removing run-command.o (🗑️)
removing send-pack.o (🗑️)
removing sequencer.o (🗑️)
removing serve.o (🗑️)
removing server-info.o (🗑️)
removing setup.o (🗑️)
removing sh-i18n--envsubst.o (🗑️)
removing sha1dc/.depend/ (🗑️)
removing sha1dc/sha1.o (🗑️)
removing sha1dc/ubc_check.o (🗑️)
removing sha1dc_git.o (🗑️)
removing sha256/block/.depend/ (🗑️)
removing sha256/block/sha256.o (🗑️)
removing shallow.o (🗑️)
removing shell.o (🗑️)
removing sideband.o (🗑️)
removing sigchain.o (🗑️)
removing sparse-index.o (🗑️)
removing split-index.o (🗑️)
removing stable-qsort.o (🗑️)
removing strbuf.o (🗑️)
removing streaming.o (🗑️)
removing string-list.o (🗑️)
removing strmap.o (🗑️)
removing strvec.o (🗑️)
removing sub-process.o (🗑️)
removing submodule-config.o (🗑️)
removing submodule.o (🗑️)
removing symlinks.o (🗑️)
removing t/helper/.depend/ (🗑️)
removing t/helper/test-advise.o (🗑️)
removing t/helper/test-bitmap.o (🗑️)
removing t/helper/test-bloom.o (🗑️)
removing t/helper/test-chmtime.o (🗑️)
removing t/helper/test-config.o (🗑️)
removing t/helper/test-crontab.o (🗑️)
removing t/helper/test-csprng.o (🗑️)
removing t/helper/test-ctype.o (🗑️)
removing t/helper/test-date.o (🗑️)
removing t/helper/test-delta.o (🗑️)
removing t/helper/test-dir-iterator.o (🗑️)
removing t/helper/test-drop-caches.o (🗑️)
removing t/helper/test-dump-cache-tree.o (🗑️)
removing t/helper/test-dump-fsmonitor.o (🗑️)
removing t/helper/test-dump-split-index.o (🗑️)
removing t/helper/test-dump-untracked-cache.o (🗑️)
removing t/helper/test-example-decorate.o (🗑️)
removing t/helper/test-fake-ssh (🗑️)
removing t/helper/test-fake-ssh.o (🗑️)
removing t/helper/test-fast-rebase.o (🗑️)
removing t/helper/test-fsmonitor-client.o (🗑️)
removing t/helper/test-genrandom.o (🗑️)
removing t/helper/test-genzeros.o (🗑️)
removing t/helper/test-getcwd.o (🗑️)
removing t/helper/test-hash-speed.o (🗑️)
removing t/helper/test-hash.o (🗑️)
removing t/helper/test-hashmap.o (🗑️)
removing t/helper/test-hexdump.o (🗑️)
removing t/helper/test-index-version.o (🗑️)
removing t/helper/test-json-writer.o (🗑️)
removing t/helper/test-lazy-init-name-hash.o (🗑️)
removing t/helper/test-match-trees.o (🗑️)
removing t/helper/test-mergesort.o (🗑️)
removing t/helper/test-mktemp.o (🗑️)
removing t/helper/test-oid-array.o (🗑️)
removing t/helper/test-oidmap.o (🗑️)
removing t/helper/test-oidtree.o (🗑️)
removing t/helper/test-online-cpus.o (🗑️)
removing t/helper/test-pack-mtimes.o (🗑️)
removing t/helper/test-parse-options.o (🗑️)
removing t/helper/test-parse-pathspec-file.o (🗑️)
removing t/helper/test-partial-clone.o (🗑️)
removing t/helper/test-path-utils.o (🗑️)
removing t/helper/test-pcre2-config.o (🗑️)
removing t/helper/test-pkt-line.o (🗑️)
removing t/helper/test-prio-queue.o (🗑️)
removing t/helper/test-proc-receive.o (🗑️)
removing t/helper/test-progress.o (🗑️)
removing t/helper/test-reach.o (🗑️)
removing t/helper/test-read-cache.o (🗑️)
removing t/helper/test-read-graph.o (🗑️)
removing t/helper/test-read-midx.o (🗑️)
removing t/helper/test-ref-store.o (🗑️)
removing t/helper/test-reftable.o (🗑️)
removing t/helper/test-regex.o (🗑️)
removing t/helper/test-repository.o (🗑️)
removing t/helper/test-revision-walking.o (🗑️)
removing t/helper/test-run-command.o (🗑️)
removing t/helper/test-scrap-cache-tree.o (🗑️)
removing t/helper/test-serve-v2.o (🗑️)
removing t/helper/test-sha1.o (🗑️)
removing t/helper/test-sha256.o (🗑️)
removing t/helper/test-sigchain.o (🗑️)
removing t/helper/test-simple-ipc.o (🗑️)
removing t/helper/test-strcmp-offset.o (🗑️)
removing t/helper/test-string-list.o (🗑️)
removing t/helper/test-submodule-config.o (🗑️)
removing t/helper/test-submodule-nested-repo-config.o (🗑️)
removing t/helper/test-subprocess.o (🗑️)
removing t/helper/test-tool (🗑️)
removing t/helper/test-tool.o (🗑️)
removing t/helper/test-trace2.o (🗑️)
removing t/helper/test-urlmatch-normalization.o (🗑️)
removing t/helper/test-userdiff.o (🗑️)
removing t/helper/test-wildmatch.o (🗑️)
removing t/helper/test-windows-named-pipe.o (🗑️)
removing t/helper/test-write-cache.o (🗑️)
removing t/helper/test-xml-encode.o (🗑️)
removing tag.o (🗑️)
removing tempfile.o (🗑️)
removing templates/blt/ (🗑️)
removing templates/boilerplates.made (🗑️)
removing thread-utils.o (🗑️)
removing tmp-objdir.o (🗑️)
removing trace.o (🗑️)
removing trace2.o (🗑️)
removing trace2/.depend/ (🗑️)
removing trace2/tr2_cfg.o (🗑️)
removing trace2/tr2_cmd_name.o (🗑️)
removing trace2/tr2_dst.o (🗑️)
removing trace2/tr2_sid.o (🗑️)
removing trace2/tr2_sysenv.o (🗑️)
removing trace2/tr2_tbuf.o (🗑️)
removing trace2/tr2_tgt_event.o (🗑️)
removing trace2/tr2_tgt_normal.o (🗑️)
removing trace2/tr2_tgt_perf.o (🗑️)
removing trace2/tr2_tls.o (🗑️)
removing trailer.o (🗑️)
removing transport-helper.o (🗑️)
removing transport.o (🗑️)
removing tree-diff.o (🗑️)
removing tree-walk.o (🗑️)
removing tree.o (🗑️)
removing unix-socket.o (🗑️)
removing unix-stream-server.o (🗑️)
removing unpack-trees.o (🗑️)
removing upload-pack.o (🗑️)
removing url.o (🗑️)
removing urlmatch.o (🗑️)
removing usage.o (🗑️)
removing userdiff.o (🗑️)
removing utf8.o (🗑️)
removing varint.o (🗑️)
removing version.o (🗑️)
removing versioncmp.o (🗑️)
removing walker.o (🗑️)
removing wildmatch.o (🗑️)
removing worktree.o (🗑️)
removing wrapper.o (🗑️)
removing write-or-die.o (🗑️)
removing ws.o (🗑️)
removing wt-status.o (🗑️)
removing xdiff-interface.o (🗑️)
removing xdiff/.depend/ (🗑️)
removing xdiff/lib.a (🗑️)
removing xdiff/xdiffi.o (🗑️)
removing xdiff/xemit.o (🗑️)
removing xdiff/xhistogram.o (🗑️)
removing xdiff/xmerge.o (🗑️)
removing xdiff/xpatience.o (🗑️)
removing xdiff/xprepare.o (🗑️)
removing xdiff/xutils.o (🗑️)
removing zlib.o (🗑️)
ek@apok:~/src/git ((28c2a35997...)|BISECTING)$ git bisect new
Bisecting: 1014 revisions left to test after this (roughly 10 steps)
[4a0479086a9bea5d31c4588b07bd45ae92a12b71] commit-graph: fix memory leak in misused string_list API
ek@apok:~/src/git ((4a0479086a...)|BISECTING)$ make prefix="$HOME/mygit" -j5
GIT_VERSION = 2.35.1.363.g4a0479086a
* new build flags
CC fuzz-commit-graph.o
CC fuzz-pack-headers.o
CC fuzz-pack-idx.o
CC daemon.o
CC common-main.o
CC abspath.o
* new link flags
CC add-interactive.o
CC add-patch.o
CC advice.o
CC alias.o
CC alloc.o
CC apply.o
CC archive-tar.o
CC archive-zip.o
CC archive.o
* new prefix flags
CC base85.o
CC bisect.o
CC blame.o
CC blob.o
CC bloom.o
CC branch.o
CC bulk-checkin.o
CC bundle.o
CC cache-tree.o
CC cbtree.o
CC chdir-notify.o
CC checkout.o
CC chunk-format.o
CC color.o
CC column.o
CC combine-diff.o
CC commit-graph.o
CC commit-reach.o
CC commit.o
CC compat/obstack.o
CC compat/terminal.o
CC compat/zlib-uncompress2.o
CC config.o
CC connect.o
CC connected.o
CC convert.o
CC copy.o
CC credential.o
CC csum-file.o
CC ctype.o
CC date.o
CC decorate.o
CC delta-islands.o
CC diff-delta.o
CC diff-merges.o
CC diff-lib.o
CC diff-no-index.o
CC diff.o
CC diffcore-break.o
CC diffcore-delta.o
CC diffcore-order.o
CC diffcore-pickaxe.o
CC diffcore-rename.o
CC diffcore-rotate.o
CC dir-iterator.o
CC dir.o
CC editor.o
CC entry.o
CC environment.o
CC ewah/bitmap.o
CC ewah/ewah_bitmap.o
CC ewah/ewah_io.o
CC ewah/ewah_rlw.o
CC exec-cmd.o
CC fetch-negotiator.o
CC fetch-pack.o
CC fmt-merge-msg.o
CC fsck.o
CC fsmonitor.o
CC gettext.o
CC gpg-interface.o
CC graph.o
CC grep.o
CC hash-lookup.o
CC hashmap.o
GEN command-list.h
CC hex.o
CC hook.o
CC ident.o
CC json-writer.o
CC kwset.o
CC levenshtein.o
CC line-log.o
CC line-range.o
CC linear-assignment.o
CC list-objects-filter-options.o
CC list-objects-filter.o
CC list-objects.o
CC ll-merge.o
CC lockfile.o
CC log-tree.o
CC ls-refs.o
CC mailinfo.o
CC mailmap.o
CC match-trees.o
CC mem-pool.o
CC merge-blobs.o
CC merge-ort.o
CC merge-ort-wrappers.o
CC merge-recursive.o
CC merge.o
CC mergesort.o
CC midx.o
CC name-hash.o
CC negotiator/default.o
CC negotiator/noop.o
CC negotiator/skipping.o
CC notes-cache.o
CC notes-merge.o
CC notes-utils.o
CC notes.o
CC object-file.o
CC object-name.o
CC object.o
CC oid-array.o
CC oidmap.o
CC oidset.o
CC oidtree.o
CC pack-bitmap-write.o
CC pack-bitmap.o
CC pack-check.o
CC pack-objects.o
CC pack-revindex.o
CC pack-write.o
CC packfile.o
CC pager.o
CC parallel-checkout.o
CC parse-options-cb.o
CC parse-options.o
CC patch-delta.o
CC patch-ids.o
CC path.o
CC pathspec.o
CC pkt-line.o
CC preload-index.o
CC pretty.o
CC prio-queue.o
CC progress.o
CC promisor-remote.o
CC prompt.o
CC protocol.o
CC protocol-caps.o
CC prune-packed.o
CC quote.o
CC range-diff.o
CC reachable.o
CC read-cache.o
CC rebase-interactive.o
CC rebase.o
CC ref-filter.o
CC reflog-walk.o
CC refs.o
CC refs/debug.o
CC refs/files-backend.o
CC refs/iterator.o
CC refs/packed-backend.o
CC refs/ref-cache.o
CC refspec.o
CC remote.o
CC replace-object.o
CC repo-settings.o
CC repository.o
CC rerere.o
CC reset.o
CC resolve-undo.o
CC revision.o
CC run-command.o
CC send-pack.o
CC sequencer.o
CC serve.o
CC server-info.o
CC setup.o
CC shallow.o
CC sideband.o
CC sigchain.o
CC sparse-index.o
CC split-index.o
CC stable-qsort.o
CC strbuf.o
CC streaming.o
CC string-list.o
CC strmap.o
CC strvec.o
CC sub-process.o
CC submodule-config.o
CC submodule.o
CC symlinks.o
CC tag.o
CC tempfile.o
CC thread-utils.o
CC tmp-objdir.o
CC trace.o
CC trace2.o
CC trace2/tr2_cfg.o
CC trace2/tr2_cmd_name.o
CC trace2/tr2_dst.o
CC trace2/tr2_sid.o
CC trace2/tr2_sysenv.o
CC trace2/tr2_tbuf.o
CC trace2/tr2_tgt_event.o
CC trace2/tr2_tgt_normal.o
CC trace2/tr2_tgt_perf.o
CC trace2/tr2_tls.o
CC trailer.o
CC transport-helper.o
CC transport.o
CC tree-diff.o
CC tree-walk.o
CC tree.o
CC unpack-trees.o
CC upload-pack.o
CC url.o
CC urlmatch.o
CC usage.o
CC userdiff.o
CC utf8.o
CC varint.o
CC versioncmp.o
CC walker.o
CC wildmatch.o
CC worktree.o
CC wrapper.o
CC write-or-die.o
CC ws.o
CC wt-status.o
CC xdiff-interface.o
CC zlib.o
CC unix-socket.o
CC unix-stream-server.o
CC compat/simple-ipc/ipc-shared.o
CC compat/simple-ipc/ipc-unix-socket.o
CC sha1dc_git.o
CC sha1dc/sha1.o
CC sha1dc/ubc_check.o
CC sha256/block/sha256.o
CC compat/linux/procinfo.o
CC compat/fopen.o
CC compat/strlcpy.o
CC compat/qsort_s.o
CC xdiff/xdiffi.o
CC xdiff/xemit.o
CC xdiff/xhistogram.o
CC xdiff/xmerge.o
CC xdiff/xpatience.o
CC xdiff/xprepare.o
CC xdiff/xutils.o
CC reftable/basics.o
CC reftable/error.o
CC reftable/block.o
CC reftable/blocksource.o
CC reftable/iter.o
CC reftable/publicbasics.o
CC reftable/merged.o
CC reftable/pq.o
CC reftable/reader.o
CC reftable/record.o
CC reftable/refname.o
CC reftable/generic.o
CC reftable/stack.o
CC reftable/tree.o
CC reftable/writer.o
CC http-backend.o
CC imap-send.o
CC http.o
CC sh-i18n--envsubst.o
CC shell.o
CC http-walker.o
CC http-fetch.o
CC http-push.o
CC remote-curl.o
* new script parameters
* new perl-specific parameters
* new Python interpreter location
GEN git-instaweb
CC git.o
CC builtin/add.o
CC builtin/am.o
CC builtin/annotate.o
CC builtin/apply.o
CC builtin/archive.o
CC builtin/bisect--helper.o
CC builtin/blame.o
CC builtin/branch.o
GEN hook-list.h
CC builtin/bundle.o
CC builtin/cat-file.o
CC builtin/check-attr.o
CC builtin/check-ignore.o
CC builtin/check-mailmap.o
CC builtin/check-ref-format.o
CC builtin/checkout--worker.o
CC builtin/checkout-index.o
CC builtin/checkout.o
CC builtin/clean.o
CC builtin/clone.o
CC builtin/column.o
CC builtin/commit-graph.o
CC builtin/commit-tree.o
CC builtin/commit.o
CC builtin/config.o
CC builtin/count-objects.o
CC builtin/credential-cache--daemon.o
CC builtin/credential-cache.o
CC builtin/credential-store.o
CC builtin/credential.o
CC builtin/describe.o
CC builtin/diff-files.o
CC builtin/diff-index.o
CC builtin/diff-tree.o
CC builtin/diff.o
CC builtin/difftool.o
CC builtin/env--helper.o
CC builtin/fast-export.o
CC builtin/fast-import.o
CC builtin/fetch-pack.o
CC builtin/fetch.o
CC builtin/fmt-merge-msg.o
CC builtin/for-each-ref.o
CC builtin/for-each-repo.o
CC builtin/fsck.o
CC builtin/gc.o
CC builtin/get-tar-commit-id.o
CC builtin/grep.o
CC builtin/hash-object.o
GEN config-list.h
CC builtin/hook.o
CC builtin/index-pack.o
CC builtin/init-db.o
CC builtin/interpret-trailers.o
CC builtin/log.o
CC builtin/ls-files.o
CC builtin/ls-remote.o
CC builtin/ls-tree.o
CC builtin/mailinfo.o
CC builtin/mailsplit.o
CC builtin/merge-base.o
CC builtin/merge-file.o
CC builtin/merge-index.o
CC builtin/merge-ours.o
CC builtin/merge-recursive.o
CC builtin/merge-tree.o
CC builtin/merge.o
CC builtin/mktag.o
CC builtin/mktree.o
CC builtin/multi-pack-index.o
CC builtin/mv.o
CC builtin/name-rev.o
CC builtin/notes.o
CC builtin/pack-objects.o
CC builtin/pack-redundant.o
CC builtin/pack-refs.o
CC builtin/patch-id.o
CC builtin/prune-packed.o
CC builtin/prune.o
CC builtin/pull.o
CC builtin/push.o
CC builtin/range-diff.o
CC builtin/read-tree.o
CC builtin/rebase.o
CC builtin/receive-pack.o
CC builtin/reflog.o
CC builtin/remote-ext.o
CC builtin/remote-fd.o
CC builtin/remote.o
CC builtin/repack.o
CC builtin/replace.o
CC builtin/rerere.o
CC builtin/reset.o
CC builtin/rev-list.o
CC builtin/rev-parse.o
CC builtin/revert.o
CC builtin/rm.o
CC builtin/send-pack.o
CC builtin/shortlog.o
CC builtin/show-branch.o
CC builtin/show-index.o
CC builtin/show-ref.o
CC builtin/sparse-checkout.o
CC builtin/stash.o
CC builtin/stripspace.o
CC builtin/submodule--helper.o
CC builtin/symbolic-ref.o
CC builtin/tag.o
CC builtin/unpack-file.o
CC builtin/unpack-objects.o
CC builtin/update-index.o
CC builtin/update-ref.o
CC builtin/update-server-info.o
CC builtin/upload-archive.o
CC builtin/upload-pack.o
CC builtin/var.o
CC builtin/verify-commit.o
CC builtin/verify-pack.o
CC builtin/verify-tag.o
CC builtin/worktree.o
CC builtin/write-tree.o
GEN git-mergetool--lib
GEN git-sh-i18n
GEN git-sh-setup
CC help.o
CC attr.o
CC version.o
AR xdiff/lib.a
AR reftable/libreftable.a
GEN git-bisect
GEN git-difftool--helper
GEN git-filter-branch
GEN git-merge-octopus
GEN git-merge-one-file
GEN git-merge-resolve
GEN git-mergetool
GEN git-quiltimport
GEN git-request-pull
GEN git-submodule
GEN git-web--browse
GEN GIT-PERL-HEADER
GEN git-p4
CC builtin/bugreport.o
CC builtin/help.o
GEN git-add--interactive
GEN git-archimport
GEN git-cvsexportcommit
GEN git-cvsimport
GEN git-cvsserver
GEN git-send-email
GEN git-svn
AR libgit.a
LINK git-daemon
LINK git-http-backend
LINK git-sh-i18n--envsubst
LINK git-imap-send
LINK git-shell
LINK git-http-fetch
LINK git-http-push
LINK git-remote-http
LINK git
LN/CP git-remote-https
LN/CP git-remote-ftp
LN/CP git-remote-ftps
BUILTIN git-add
BUILTIN git-am
BUILTIN git-annotate
BUILTIN git-apply
BUILTIN git-archive
BUILTIN git-bisect--helper
BUILTIN git-blame
BUILTIN git-branch
BUILTIN git-bugreport
BUILTIN git-bundle
BUILTIN git-cat-file
BUILTIN git-check-attr
BUILTIN git-check-ignore
BUILTIN git-check-mailmap
BUILTIN git-check-ref-format
BUILTIN git-checkout--worker
BUILTIN git-checkout-index
BUILTIN git-checkout
BUILTIN git-clean
BUILTIN git-clone
BUILTIN git-column
BUILTIN git-commit-graph
BUILTIN git-commit-tree
BUILTIN git-commit
BUILTIN git-config
BUILTIN git-count-objects
BUILTIN git-credential-cache--daemon
BUILTIN git-credential-cache
BUILTIN git-credential-store
BUILTIN git-credential
BUILTIN git-describe
BUILTIN git-diff-files
BUILTIN git-diff-index
BUILTIN git-diff-tree
BUILTIN git-diff
BUILTIN git-difftool
BUILTIN git-env--helper
BUILTIN git-fast-export
BUILTIN git-fast-import
BUILTIN git-fetch-pack
BUILTIN git-fetch
BUILTIN git-fmt-merge-msg
BUILTIN git-for-each-ref
BUILTIN git-for-each-repo
BUILTIN git-fsck
BUILTIN git-gc
BUILTIN git-get-tar-commit-id
BUILTIN git-grep
BUILTIN git-hash-object
BUILTIN git-help
BUILTIN git-hook
BUILTIN git-index-pack
BUILTIN git-init-db
BUILTIN git-interpret-trailers
BUILTIN git-log
BUILTIN git-ls-files
BUILTIN git-ls-remote
BUILTIN git-ls-tree
BUILTIN git-mailinfo
BUILTIN git-mailsplit
BUILTIN git-merge-base
BUILTIN git-merge-file
BUILTIN git-merge-index
BUILTIN git-merge-ours
BUILTIN git-merge-recursive
BUILTIN git-merge-tree
BUILTIN git-merge
BUILTIN git-mktag
BUILTIN git-mktree
BUILTIN git-multi-pack-index
BUILTIN git-mv
BUILTIN git-name-rev
BUILTIN git-notes
BUILTIN git-pack-objects
BUILTIN git-pack-redundant
BUILTIN git-pack-refs
BUILTIN git-patch-id
BUILTIN git-prune
BUILTIN git-prune-packed
BUILTIN git-pull
BUILTIN git-push
BUILTIN git-range-diff
BUILTIN git-read-tree
BUILTIN git-rebase
BUILTIN git-receive-pack
BUILTIN git-reflog
BUILTIN git-remote-ext
BUILTIN git-remote-fd
BUILTIN git-remote
BUILTIN git-repack
BUILTIN git-replace
BUILTIN git-rerere
BUILTIN git-rev-list
BUILTIN git-reset
BUILTIN git-rev-parse
BUILTIN git-revert
BUILTIN git-rm
BUILTIN git-send-pack
BUILTIN git-shortlog
BUILTIN git-show-branch
BUILTIN git-show-index
BUILTIN git-show-ref
BUILTIN git-sparse-checkout
BUILTIN git-stash
BUILTIN git-stripspace
BUILTIN git-submodule--helper
BUILTIN git-symbolic-ref
BUILTIN git-tag
BUILTIN git-unpack-file
BUILTIN git-unpack-objects
BUILTIN git-update-index
BUILTIN git-update-ref
BUILTIN git-update-server-info
BUILTIN git-upload-archive
BUILTIN git-upload-pack
BUILTIN git-verify-commit
BUILTIN git-var
BUILTIN git-verify-pack
BUILTIN git-verify-tag
BUILTIN git-worktree
BUILTIN git-write-tree
BUILTIN git-cherry-pick
BUILTIN git-cherry
BUILTIN git-format-patch
BUILTIN git-fsck-objects
BUILTIN git-maintenance
BUILTIN git-init
BUILTIN git-merge-subtree
BUILTIN git-restore
BUILTIN git-show
BUILTIN git-switch
BUILTIN git-stage
BUILTIN git-status
BUILTIN git-whatchanged
SUBDIR git-gui
GITGUI_VERSION = 0.21.0.99.gdf4f9
* new locations or Tcl/Tk interpreter
MSGFMT po/bg.msg MSGFMT po/de.msg MSGFMT po/el.msg MSGFMT po/fr.msg MSGFMT po/hu.msg 579 translated.
MSGFMT po/it.msg 565 translated.
381 translated, 4 fuzzy, 6 untranslated.
MSGFMT po/ja.msg MSGFMT po/nb.msg 520 translated.
MSGFMT po/pt_br.msg 514 translated.
MSGFMT po/pt_pt.msg 519 translated, 1 untranslated.
MSGFMT po/ru.msg 546 translated, 1 untranslated.
MSGFMT po/sv.msg 550 translated.
MSGFMT po/vi.msg 520 translated.
474 translated, 39 untranslated.
MSGFMT po/zh_cn.msg GEN git-gui
579 translated.
547 translated.
INDEX lib/
543 translated.
366 translated, 7 fuzzy, 17 untranslated.
SUBDIR gitk-git
Generating catalog po/bg.msg
msgfmt --statistics --tcl po/bg.po -l bg -d po/
Generating catalog po/ca.msg
msgfmt --statistics --tcl po/ca.po -l ca -d po/
Generating catalog po/de.msg
msgfmt --statistics --tcl po/de.po -l de -d po/
Generating catalog po/es.msg
msgfmt --statistics --tcl po/es.po -l es -d po/
* new Tcl/Tk interpreter location
307 translated messages307 translated messages.
.
Generating catalog po/fr.msg
msgfmt --statistics --tcl po/fr.po -l fr -d po/
317 translated messages.
Generating catalog po/hu.msg
Generating catalog po/it.msg
msgfmt --statistics --tcl po/hu.po -l hu -d po/
msgfmt --statistics --tcl po/it.po -l it -d po/
Generating catalog po/ja.msg
184 translated messages, 46 fuzzy translations, 77 untranslated messages.
msgfmt --statistics --tcl po/ja.po -l ja -d po/
311 translated messages277 translated messages, 18 fuzzy translations, 12 untranslated messages.
.
Generating catalog po/pt_br.msg
msgfmt --statistics --tcl po/pt_br.po -l pt_br -d po/
274 translated messages, 17 fuzzy translations, 16 untranslated messages.
Generating catalog po/pt_pt.msg
311 translated messages.
Generating catalog po/ru.msg
msgfmt --statistics --tcl po/pt_pt.po -l pt_pt -d po/
msgfmt --statistics --tcl po/ru.po -l ru -d po/
Generating catalog po/sv.msg
msgfmt --statistics --tcl po/sv.po -l sv -d po/
Generating catalog po/vi.msg
msgfmt --statistics --tcl po/vi.po -l vi -d po/
279 translated messages, 16 fuzzy translations, 12 untranslated messages.
311 translated messages.
Generating catalog po/zh_cn.msg
msgfmt --statistics --tcl po/zh_cn.po -l zh_cn -d po/
GEN gitk-wish
311 translated messages.
307 translated messages.
317 translated messages.
317 translated messages.
SUBDIR templates
MSGFMT po/build/locale/ca/LC_MESSAGES/git.mo
MSGFMT po/build/locale/bg/LC_MESSAGES/git.mo
MSGFMT po/build/locale/de/LC_MESSAGES/git.mo
MSGFMT po/build/locale/el/LC_MESSAGES/git.mo
MSGFMT po/build/locale/es/LC_MESSAGES/git.mo
MSGFMT po/build/locale/fr/LC_MESSAGES/git.mo
MSGFMT po/build/locale/id/LC_MESSAGES/git.mo
MSGFMT po/build/locale/is/LC_MESSAGES/git.mo
MSGFMT po/build/locale/it/LC_MESSAGES/git.mo
MSGFMT po/build/locale/ko/LC_MESSAGES/git.mo
MSGFMT po/build/locale/pl/LC_MESSAGES/git.mo
MSGFMT po/build/locale/pt_PT/LC_MESSAGES/git.mo
MSGFMT po/build/locale/ru/LC_MESSAGES/git.mo
MSGFMT po/build/locale/sv/LC_MESSAGES/git.mo
MSGFMT po/build/locale/tr/LC_MESSAGES/git.mo
MSGFMT po/build/locale/vi/LC_MESSAGES/git.mo
MSGFMT po/build/locale/zh_CN/LC_MESSAGES/git.mo
MSGFMT po/build/locale/zh_TW/LC_MESSAGES/git.mo
GEN perl/build/lib/Git.pm
GEN perl/build/lib/Git/IndexInfo.pm
GEN perl/build/lib/Git/LoadCPAN.pm
GEN perl/build/lib/Git/I18N.pm
GEN perl/build/lib/Git/Packet.pm
GEN perl/build/lib/Git/SVN.pm
GEN perl/build/lib/Git/LoadCPAN/Error.pm
GEN perl/build/lib/Git/SVN/Editor.pm
GEN perl/build/lib/Git/SVN/Fetcher.pm
GEN perl/build/lib/Git/SVN/GlobSpec.pm
GEN perl/build/lib/Git/SVN/Log.pm
GEN perl/build/lib/Git/SVN/Migration.pm
GEN perl/build/lib/Git/SVN/Prompt.pm
GEN perl/build/lib/Git/SVN/Ra.pm
GEN perl/build/lib/Git/SVN/Utils.pm
GEN perl/build/lib/Git/SVN/Memoize/YAML.pm
GEN perl/build/lib/Git/LoadCPAN/Mail/Address.pm
GEN perl/build/lib/FromCPAN/Error.pm
GEN perl/build/lib/FromCPAN/Mail/Address.pm
CC t/helper/test-fake-ssh.o
CC reftable/basics_test.o
CC reftable/dump.o
CC reftable/block_test.o
CC reftable/merged_test.o
CC reftable/pq_test.o
CC reftable/record_test.o
CC reftable/readwrite_test.o
CC reftable/refname_test.o
CC reftable/stack_test.o
CC reftable/test_framework.o
CC reftable/tree_test.o
CC t/helper/test-tool.o
CC t/helper/test-advise.o
CC t/helper/test-bitmap.o
CC t/helper/test-bloom.o
CC t/helper/test-chmtime.o
CC t/helper/test-config.o
CC t/helper/test-crontab.o
CC t/helper/test-csprng.o
CC t/helper/test-ctype.o
CC t/helper/test-date.o
CC t/helper/test-delta.o
CC t/helper/test-dir-iterator.o
CC t/helper/test-drop-caches.o
CC t/helper/test-dump-cache-tree.o
CC t/helper/test-dump-fsmonitor.o
CC t/helper/test-dump-split-index.o
CC t/helper/test-dump-untracked-cache.o
CC t/helper/test-example-decorate.o
CC t/helper/test-fast-rebase.o
CC t/helper/test-genrandom.o
CC t/helper/test-genzeros.o
CC t/helper/test-getcwd.o
CC t/helper/test-hash-speed.o
CC t/helper/test-hash.o
CC t/helper/test-hashmap.o
CC t/helper/test-index-version.o
CC t/helper/test-json-writer.o
CC t/helper/test-lazy-init-name-hash.o
CC t/helper/test-match-trees.o
CC t/helper/test-mergesort.o
CC t/helper/test-mktemp.o
CC t/helper/test-oid-array.o
CC t/helper/test-oidmap.o
CC t/helper/test-oidtree.o
CC t/helper/test-online-cpus.o
CC t/helper/test-parse-options.o
CC t/helper/test-parse-pathspec-file.o
CC t/helper/test-partial-clone.o
CC t/helper/test-path-utils.o
CC t/helper/test-pcre2-config.o
CC t/helper/test-pkt-line.o
CC t/helper/test-prio-queue.o
CC t/helper/test-proc-receive.o
CC t/helper/test-progress.o
CC t/helper/test-reach.o
CC t/helper/test-read-cache.o
CC t/helper/test-read-graph.o
CC t/helper/test-read-midx.o
CC t/helper/test-ref-store.o
CC t/helper/test-reftable.o
CC t/helper/test-regex.o
CC t/helper/test-repository.o
CC t/helper/test-revision-walking.o
CC t/helper/test-run-command.o
CC t/helper/test-scrap-cache-tree.o
CC t/helper/test-serve-v2.o
CC t/helper/test-sha1.o
CC t/helper/test-sha256.o
CC t/helper/test-sigchain.o
CC t/helper/test-simple-ipc.o
CC t/helper/test-strcmp-offset.o
CC t/helper/test-string-list.o
CC t/helper/test-submodule-config.o
CC t/helper/test-submodule-nested-repo-config.o
CC t/helper/test-subprocess.o
CC t/helper/test-trace2.o
CC t/helper/test-urlmatch-normalization.o
CC t/helper/test-userdiff.o
CC t/helper/test-wildmatch.o
CC t/helper/test-windows-named-pipe.o
CC t/helper/test-write-cache.o
CC t/helper/test-xml-encode.o
GEN bin-wrappers/git
GEN bin-wrappers/git-receive-pack
GEN bin-wrappers/git-shell
GEN bin-wrappers/git-upload-archive
GEN bin-wrappers/git-upload-pack
GEN bin-wrappers/git-cvsserver
GEN bin-wrappers/test-fake-ssh
GEN bin-wrappers/test-tool
AR reftable/libreftable_test.a
LINK t/helper/test-fake-ssh
LINK t/helper/test-tool
ek@apok:~/src/git ((4a0479086a...)|BISECTING)$ make prefix="$HOME/mygit" install
SUBDIR git-gui
SUBDIR gitk-git
SUBDIR templates
install -d -m 755 '/home/ek/mygit/bin'
install -d -m 755 '/home/ek/mygit/libexec/git-core'
install git-daemon git-http-backend git-imap-send git-sh-i18n--envsubst git-shell git-http-fetch git-http-push git-remote-http git-remote-https git-remote-ftp git-remote-ftps '/home/ek/mygit/libexec/git-core'
install git-bisect git-difftool--helper git-filter-branch git-merge-octopus git-merge-one-file git-merge-resolve git-mergetool git-quiltimport git-request-pull git-submodule git-web--browse git-add--interactive git-archimport git-cvsexportcommit git-cvsimport git-cvsserver git-send-email git-svn git-p4 git-instaweb '/home/ek/mygit/libexec/git-core'
install -m 644 git-mergetool--lib git-sh-i18n git-sh-setup '/home/ek/mygit/libexec/git-core'
install git git-receive-pack git-shell git-upload-archive git-upload-pack '/home/ek/mygit/bin'
install git-cvsserver '/home/ek/mygit/bin'
make -C templates DESTDIR='' install
make[1]: Entering directory '/home/ek/src/git/templates'
install -d -m 755 '/home/ek/mygit/share/git-core/templates'
(cd blt && tar cf - .) | \
(cd '/home/ek/mygit/share/git-core/templates' && umask 022 && tar xof -)
make[1]: Leaving directory '/home/ek/src/git/templates'
install -d -m 755 '/home/ek/mygit/libexec/git-core/mergetools'
install -m 644 mergetools/* '/home/ek/mygit/libexec/git-core/mergetools'
install -d -m 755 '/home/ek/mygit/share/locale'
(cd po/build/locale && tar cf - .) | \
(cd '/home/ek/mygit/share/locale' && umask 022 && tar xof -)
install -d -m 755 '/home/ek/mygit/share/perl5'
(cd perl/build/lib && tar cf - .) | \
(cd '/home/ek/mygit/share/perl5' && umask 022 && tar xof -)
make -C gitweb install
make[1]: Entering directory '/home/ek/src/git/gitweb'
make[2]: Entering directory '/home/ek/src/git'
make[2]: 'GIT-VERSION-FILE' is up to date.
make[2]: Leaving directory '/home/ek/src/git'
GEN gitweb.cgi
GEN static/gitweb.js
install -d -m 755 '/home/ek/mygit/share/gitweb'
install -m 755 gitweb.cgi '/home/ek/mygit/share/gitweb'
install -d -m 755 '/home/ek/mygit/share/gitweb/static'
install -m 644 static/gitweb.js static/gitweb.css static/git-logo.png static/git-favicon.png '/home/ek/mygit/share/gitweb/static'
make[1]: Leaving directory '/home/ek/src/git/gitweb'
make -C gitk-git install
make[1]: Entering directory '/home/ek/src/git/gitk-git'
install -d -m 755 '/home/ek/mygit/bin'
install -m 755 gitk-wish '/home/ek/mygit/bin'/gitk
install -d -m 755 '/home/ek/mygit/share/gitk/lib/msgs'
install -m 644 po/bg.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/ca.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/de.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/es.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/fr.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/hu.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/it.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/ja.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/pt_br.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/pt_pt.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/ru.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/sv.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/vi.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/zh_cn.msg '/home/ek/mygit/share/gitk/lib/msgs' && true
make[1]: Leaving directory '/home/ek/src/git/gitk-git'
make -C git-gui gitexecdir='/home/ek/mygit/libexec/git-core' install
make[1]: Entering directory '/home/ek/src/git/git-gui'
DEST /home/ek/mygit/libexec/git-core
INSTALL 755 git-gui
INSTALL 755 git-gui--askpass
LINK git-citool -> git-gui
DEST /home/ek/mygit/share/git-gui/lib
INSTALL 644 tclIndex
INSTALL 644 about.tcl
INSTALL 644 blame.tcl
INSTALL 644 branch_checkout.tcl
INSTALL 644 branch_create.tcl
INSTALL 644 branch_delete.tcl
INSTALL 644 branch_rename.tcl
INSTALL 644 branch.tcl
INSTALL 644 browser.tcl
INSTALL 644 checkout_op.tcl
INSTALL 644 choose_font.tcl
INSTALL 644 choose_repository.tcl
INSTALL 644 choose_rev.tcl
INSTALL 644 chord.tcl
INSTALL 644 class.tcl
INSTALL 644 commit.tcl
INSTALL 644 console.tcl
INSTALL 644 database.tcl
INSTALL 644 date.tcl
INSTALL 644 diff.tcl
INSTALL 644 encoding.tcl
INSTALL 644 error.tcl
INSTALL 644 index.tcl
INSTALL 644 line.tcl
INSTALL 644 logo.tcl
INSTALL 644 merge.tcl
INSTALL 644 mergetool.tcl
INSTALL 644 option.tcl
INSTALL 644 remote_add.tcl
INSTALL 644 remote_branch_delete.tcl
INSTALL 644 remote.tcl
INSTALL 644 search.tcl
INSTALL 644 shortcut.tcl
INSTALL 644 spellcheck.tcl
INSTALL 644 sshkey.tcl
INSTALL 644 status_bar.tcl
INSTALL 644 themed.tcl
INSTALL 644 tools_dlg.tcl
INSTALL 644 tools.tcl
INSTALL 644 transport.tcl
INSTALL 644 win32.tcl
INSTALL 644 git-gui.ico
INSTALL 644 win32_shortcut.js
DEST /home/ek/mygit/share/git-gui/lib/msgs
INSTALL 644 bg.msg
INSTALL 644 de.msg
INSTALL 644 el.msg
INSTALL 644 fr.msg
INSTALL 644 hu.msg
INSTALL 644 it.msg
INSTALL 644 ja.msg
INSTALL 644 nb.msg
INSTALL 644 pt_br.msg
INSTALL 644 pt_pt.msg
INSTALL 644 ru.msg
INSTALL 644 sv.msg
INSTALL 644 vi.msg
INSTALL 644 zh_cn.msg
make[1]: Leaving directory '/home/ek/src/git/git-gui'
bindir=$(cd '/home/ek/mygit/bin' && pwd) && \
execdir=$(cd '/home/ek/mygit/libexec/git-core' && pwd) && \
destdir_from_execdir_SQ=$(echo 'libexec/git-core' | sed -e 's|[^/][^/]*|..|g') && \
{ test "$bindir/" = "$execdir/" || \
for p in git git-shell git-cvsserver; do \
rm -f "$execdir/$p" && \
test -n "" && \
ln -s "$destdir_from_execdir_SQ/bin/$p" "$execdir/$p" || \
{ test -z "" && \
ln "$bindir/$p" "$execdir/$p" 2>/dev/null || \
cp "$bindir/$p" "$execdir/$p" || exit; } \
done; \
} && \
for p in git-receive-pack git-upload-archive git-upload-pack; do \
rm -f "$bindir/$p" && \
test -n "" && \
ln -s "git" "$bindir/$p" || \
{ test -z "" && \
ln "$bindir/git" "$bindir/$p" 2>/dev/null || \
ln -s "git" "$bindir/$p" 2>/dev/null || \
cp "$bindir/git" "$bindir/$p" || exit; }; \
done && \
for p in git-add git-am git-annotate git-apply git-archive git-bisect--helper git-blame git-branch git-bugreport git-bundle git-cat-file git-check-attr git-check-ignore git-check-mailmap git-check-ref-format git-checkout--worker git-checkout-index git-checkout git-clean git-clone git-column git-commit-graph git-commit-tree git-commit git-config git-count-objects git-credential-cache--daemon git-credential-cache git-credential-store git-credential git-describe git-diff-files git-diff-index git-diff-tree git-diff git-difftool git-env--helper git-fast-export git-fast-import git-fetch-pack git-fetch git-fmt-merge-msg git-for-each-ref git-for-each-repo git-fsck git-gc git-get-tar-commit-id git-grep git-hash-object git-help git-hook git-index-pack git-init-db git-interpret-trailers git-log git-ls-files git-ls-remote git-ls-tree git-mailinfo git-mailsplit git-merge-base git-merge-file git-merge-index git-merge-ours git-merge-recursive git-merge-tree git-merge git-mktag git-mktree git-multi-pack-index git-mv git-name-rev git-notes git-pack-objects git-pack-redundant git-pack-refs git-patch-id git-prune-packed git-prune git-pull git-push git-range-diff git-read-tree git-rebase git-receive-pack git-reflog git-remote-ext git-remote-fd git-remote git-repack git-replace git-rerere git-reset git-rev-list git-rev-parse git-revert git-rm git-send-pack git-shortlog git-show-branch git-show-index git-show-ref git-sparse-checkout git-stash git-stripspace git-submodule--helper git-symbolic-ref git-tag git-unpack-file git-unpack-objects git-update-index git-update-ref git-update-server-info git-upload-archive git-upload-pack git-var git-verify-commit git-verify-pack git-verify-tag git-worktree git-write-tree git-cherry git-cherry-pick git-format-patch git-fsck-objects git-init git-maintenance git-merge-subtree git-restore git-show git-stage git-status git-switch git-whatchanged; do \
rm -f "$execdir/$p" && \
if test -z ""; \
then \
test -n "" && \
ln -s "$destdir_from_execdir_SQ/bin/git" "$execdir/$p" || \
{ test -z "" && \
ln "$execdir/git" "$execdir/$p" 2>/dev/null || \
ln -s "git" "$execdir/$p" 2>/dev/null || \
cp "$execdir/git" "$execdir/$p" || exit; }; \
fi \
done && \
remote_curl_aliases="git-remote-https git-remote-ftp git-remote-ftps" && \
for p in $remote_curl_aliases; do \
rm -f "$execdir/$p" && \
test -n "" && \
ln -s "git-remote-http" "$execdir/$p" || \
{ test -z "" && \
ln "$execdir/git-remote-http" "$execdir/$p" 2>/dev/null || \
ln -s "git-remote-http" "$execdir/$p" 2>/dev/null || \
cp "$execdir/git-remote-http" "$execdir/$p" || exit; } \
done
ek@apok:~/src/git ((4a0479086a...)|BISECTING)$ pushd ~/tmp
~/tmp ~/src/git
ek@apok:~/tmp$ PATH="$HOME/mygit/bin:$PATH" GIT_SSH_COMMAND='{ pid="$(ps -o ppid:1= -p "$$")"; ps -o pid:1=,cmd= -p "$pid"; awk -v RS=\\0 "/^GIT_CONFIG/ { print \" \" \$0 }" "/proc/$pid/environ"; } 1>&2; ssh' GIT_CONFIG_COUNT=1 GIT_CONFIG_KEY_0=foo.bar GIT_CONFIG_VALUE_0=baz git clone --recurse-submodules git@github.com:EliahKagan/has-nested-submodule.git
Cloning into 'has-nested-submodule'...
1045048 git clone --recurse-submodules git@github.com:EliahKagan/has-nested-submodule.git
GIT_CONFIG_COUNT=1
GIT_CONFIG_KEY_0=foo.bar
GIT_CONFIG_VALUE_0=baz
remote: Enumerating objects: 4, done.
remote: Counting objects: 100% (4/4), done.
remote: Compressing objects: 100% (4/4), done.
remote: Total 4 (delta 0), reused 4 (delta 0), pack-reused 0
Receiving objects: 100% (4/4), done.
Submodule 'has-submodule' (git@github.com:EliahKagan/has-submodule.git) registered for path 'has-submodule'
Cloning into '/home/ek/tmp/has-nested-submodule/has-submodule'...
1045092 /home/ek/mygit/libexec/git-core/git clone --no-checkout --progress --separate-git-dir /home/ek/tmp/has-nested-submodule/.git/modules/has-submodule --no-single-branch -- git@github.com:EliahKagan/has-submodule.git /home/ek/tmp/has-nested-submodule/has-submodule
GIT_CONFIG_COUNT=1
GIT_CONFIG_KEY_0=foo.bar
GIT_CONFIG_VALUE_0=baz
remote: Enumerating objects: 4, done.
remote: Counting objects: 100% (4/4), done.
remote: Compressing objects: 100% (4/4), done.
remote: Total 4 (delta 0), reused 4 (delta 0), pack-reused 0
Receiving objects: 100% (4/4), done.
Submodule path 'has-submodule': checked out '8de4a40d782ddfd338f2ada312714d60541c6f80'
Submodule 'trivial' (git@github.com:EliahKagan/trivial.git) registered for path 'has-submodule/trivial'
Cloning into '/home/ek/tmp/has-nested-submodule/has-submodule/trivial'...
1045120 /home/ek/mygit/libexec/git-core/git clone --no-checkout --progress --separate-git-dir /home/ek/tmp/has-nested-submodule/.git/modules/has-submodule/modules/trivial --no-single-branch -- git@github.com:EliahKagan/trivial.git /home/ek/tmp/has-nested-submodule/has-submodule/trivial
GIT_CONFIG_KEY_0=foo.bar
GIT_CONFIG_PARAMETERS=
GIT_CONFIG_VALUE_0=baz
remote: Enumerating objects: 3, done.
remote: Counting objects: 100% (3/3), done.
remote: Compressing objects: 100% (2/2), done.
remote: Total 3 (delta 0), reused 3 (delta 0), pack-reused 0
Receiving objects: 100% (3/3), done.
Submodule path 'has-submodule/trivial': checked out '656a18dc1e48e035a05a72011a62bca5f41fa07e'
ek@apok:~/tmp$ mr -rf has^C
ek@apok:~/tmp[130]$ rm -rf has-nested-submodule/
ek@apok:~/tmp$ popd
~/src/git
ek@apok:~/src/git ((4a0479086a...)|BISECTING)$ rm -rf ~/mygit
ek@apok:~/src/git ((4a0479086a...)|BISECTING)$ gix clean -xde
removing .depend/ (🗑️)
removing GIT-BUILD-OPTIONS (🗑️)
removing GIT-CFLAGS (🗑️)
removing GIT-LDFLAGS (🗑️)
removing GIT-PERL-DEFINES (🗑️)
removing GIT-PERL-HEADER (🗑️)
removing GIT-PREFIX (🗑️)
removing GIT-PYTHON-VARS (🗑️)
removing GIT-SCRIPT-DEFINES (🗑️)
removing GIT-USER-AGENT (🗑️)
removing GIT-VERSION-FILE (🗑️)
removing abspath.o (🗑️)
removing add-interactive.o (🗑️)
removing add-patch.o (🗑️)
removing advice.o (🗑️)
removing alias.o (🗑️)
removing alloc.o (🗑️)
removing apply.o (🗑️)
removing archive-tar.o (🗑️)
removing archive-zip.o (🗑️)
removing archive.o (🗑️)
removing attr.o (🗑️)
removing base85.o (🗑️)
removing bin-wrappers/ (🗑️)
removing bisect.o (🗑️)
removing blame.o (🗑️)
removing blob.o (🗑️)
removing bloom.o (🗑️)
removing branch.o (🗑️)
removing builtin/.depend/ (🗑️)
removing builtin/add.o (🗑️)
removing builtin/am.o (🗑️)
removing builtin/annotate.o (🗑️)
removing builtin/apply.o (🗑️)
removing builtin/archive.o (🗑️)
removing builtin/bisect--helper.o (🗑️)
removing builtin/blame.o (🗑️)
removing builtin/branch.o (🗑️)
removing builtin/bugreport.o (🗑️)
removing builtin/bundle.o (🗑️)
removing builtin/cat-file.o (🗑️)
removing builtin/check-attr.o (🗑️)
removing builtin/check-ignore.o (🗑️)
removing builtin/check-mailmap.o (🗑️)
removing builtin/check-ref-format.o (🗑️)
removing builtin/checkout--worker.o (🗑️)
removing builtin/checkout-index.o (🗑️)
removing builtin/checkout.o (🗑️)
removing builtin/clean.o (🗑️)
removing builtin/clone.o (🗑️)
removing builtin/column.o (🗑️)
removing builtin/commit-graph.o (🗑️)
removing builtin/commit-tree.o (🗑️)
removing builtin/commit.o (🗑️)
removing builtin/config.o (🗑️)
removing builtin/count-objects.o (🗑️)
removing builtin/credential-cache--daemon.o (🗑️)
removing builtin/credential-cache.o (🗑️)
removing builtin/credential-store.o (🗑️)
removing builtin/credential.o (🗑️)
removing builtin/describe.o (🗑️)
removing builtin/diff-files.o (🗑️)
removing builtin/diff-index.o (🗑️)
removing builtin/diff-tree.o (🗑️)
removing builtin/diff.o (🗑️)
removing builtin/difftool.o (🗑️)
removing builtin/env--helper.o (🗑️)
removing builtin/fast-export.o (🗑️)
removing builtin/fast-import.o (🗑️)
removing builtin/fetch-pack.o (🗑️)
removing builtin/fetch.o (🗑️)
removing builtin/fmt-merge-msg.o (🗑️)
removing builtin/for-each-ref.o (🗑️)
removing builtin/for-each-repo.o (🗑️)
removing builtin/fsck.o (🗑️)
removing builtin/gc.o (🗑️)
removing builtin/get-tar-commit-id.o (🗑️)
removing builtin/grep.o (🗑️)
removing builtin/hash-object.o (🗑️)
removing builtin/help.o (🗑️)
removing builtin/hook.o (🗑️)
removing builtin/index-pack.o (🗑️)
removing builtin/init-db.o (🗑️)
removing builtin/interpret-trailers.o (🗑️)
removing builtin/log.o (🗑️)
removing builtin/ls-files.o (🗑️)
removing builtin/ls-remote.o (🗑️)
removing builtin/ls-tree.o (🗑️)
removing builtin/mailinfo.o (🗑️)
removing builtin/mailsplit.o (🗑️)
removing builtin/merge-base.o (🗑️)
removing builtin/merge-file.o (🗑️)
removing builtin/merge-index.o (🗑️)
removing builtin/merge-ours.o (🗑️)
removing builtin/merge-recursive.o (🗑️)
removing builtin/merge-tree.o (🗑️)
removing builtin/merge.o (🗑️)
removing builtin/mktag.o (🗑️)
removing builtin/mktree.o (🗑️)
removing builtin/multi-pack-index.o (🗑️)
removing builtin/mv.o (🗑️)
removing builtin/name-rev.o (🗑️)
removing builtin/notes.o (🗑️)
removing builtin/pack-objects.o (🗑️)
removing builtin/pack-redundant.o (🗑️)
removing builtin/pack-refs.o (🗑️)
removing builtin/patch-id.o (🗑️)
removing builtin/prune-packed.o (🗑️)
removing builtin/prune.o (🗑️)
removing builtin/pull.o (🗑️)
removing builtin/push.o (🗑️)
removing builtin/range-diff.o (🗑️)
removing builtin/read-tree.o (🗑️)
removing builtin/rebase.o (🗑️)
removing builtin/receive-pack.o (🗑️)
removing builtin/reflog.o (🗑️)
removing builtin/remote-ext.o (🗑️)
removing builtin/remote-fd.o (🗑️)
removing builtin/remote.o (🗑️)
removing builtin/repack.o (🗑️)
removing builtin/replace.o (🗑️)
removing builtin/rerere.o (🗑️)
removing builtin/reset.o (🗑️)
removing builtin/rev-list.o (🗑️)
removing builtin/rev-parse.o (🗑️)
removing builtin/revert.o (🗑️)
removing builtin/rm.o (🗑️)
removing builtin/send-pack.o (🗑️)
removing builtin/shortlog.o (🗑️)
removing builtin/show-branch.o (🗑️)
removing builtin/show-index.o (🗑️)
removing builtin/show-ref.o (🗑️)
removing builtin/sparse-checkout.o (🗑️)
removing builtin/stash.o (🗑️)
removing builtin/stripspace.o (🗑️)
removing builtin/submodule--helper.o (🗑️)
removing builtin/symbolic-ref.o (🗑️)
removing builtin/tag.o (🗑️)
removing builtin/unpack-file.o (🗑️)
removing builtin/unpack-objects.o (🗑️)
removing builtin/update-index.o (🗑️)
removing builtin/update-ref.o (🗑️)
removing builtin/update-server-info.o (🗑️)
removing builtin/upload-archive.o (🗑️)
removing builtin/upload-pack.o (🗑️)
removing builtin/var.o (🗑️)
removing builtin/verify-commit.o (🗑️)
removing builtin/verify-pack.o (🗑️)
removing builtin/verify-tag.o (🗑️)
removing builtin/worktree.o (🗑️)
removing builtin/write-tree.o (🗑️)
removing bulk-checkin.o (🗑️)
removing bundle.o (🗑️)
removing cache-tree.o (🗑️)
removing cbtree.o (🗑️)
removing chdir-notify.o (🗑️)
removing checkout.o (🗑️)
removing chunk-format.o (🗑️)
removing color.o (🗑️)
removing column.o (🗑️)
removing combine-diff.o (🗑️)
removing command-list.h (🗑️)
removing commit-graph.o (🗑️)
removing commit-reach.o (🗑️)
removing commit.o (🗑️)
removing common-main.o (🗑️)
removing compat/.depend/ (🗑️)
removing compat/fopen.o (🗑️)
removing compat/linux/.depend/ (🗑️)
removing compat/linux/procinfo.o (🗑️)
removing compat/obstack.o (🗑️)
removing compat/qsort_s.o (🗑️)
removing compat/simple-ipc/.depend/ (🗑️)
removing compat/simple-ipc/ipc-shared.o (🗑️)
removing compat/simple-ipc/ipc-unix-socket.o (🗑️)
removing compat/strlcpy.o (🗑️)
removing compat/terminal.o (🗑️)
removing compat/zlib-uncompress2.o (🗑️)
removing config-list.h (🗑️)
removing config.o (🗑️)
removing connect.o (🗑️)
removing connected.o (🗑️)
removing contrib/scalar/.depend/ (🗑️)
removing convert.o (🗑️)
removing copy.o (🗑️)
removing credential.o (🗑️)
removing csum-file.o (🗑️)
removing ctype.o (🗑️)
removing daemon.o (🗑️)
removing date.o (🗑️)
removing decorate.o (🗑️)
removing delta-islands.o (🗑️)
removing diff-delta.o (🗑️)
removing diff-lib.o (🗑️)
removing diff-merges.o (🗑️)
removing diff-no-index.o (🗑️)
removing diff.o (🗑️)
removing diffcore-break.o (🗑️)
removing diffcore-delta.o (🗑️)
removing diffcore-order.o (🗑️)
removing diffcore-pickaxe.o (🗑️)
removing diffcore-rename.o (🗑️)
removing diffcore-rotate.o (🗑️)
removing dir-iterator.o (🗑️)
removing dir.o (🗑️)
removing editor.o (🗑️)
removing entry.o (🗑️)
removing environment.o (🗑️)
removing ewah/.depend/ (🗑️)
removing ewah/bitmap.o (🗑️)
removing ewah/ewah_bitmap.o (🗑️)
removing ewah/ewah_io.o (🗑️)
removing ewah/ewah_rlw.o (🗑️)
removing exec-cmd.o (🗑️)
removing fetch-negotiator.o (🗑️)
removing fetch-pack.o (🗑️)
removing fmt-merge-msg.o (🗑️)
removing fsck.o (🗑️)
removing fsmonitor.o (🗑️)
removing fuzz-commit-graph.o (🗑️)
removing fuzz-pack-headers.o (🗑️)
removing fuzz-pack-idx.o (🗑️)
removing gettext.o (🗑️)
removing git (🗑️)
removing git-add (🗑️)
removing git-add--interactive (🗑️)
removing git-am (🗑️)
removing git-annotate (🗑️)
removing git-apply (🗑️)
removing git-archimport (🗑️)
removing git-archive (🗑️)
removing git-bisect (🗑️)
removing git-bisect--helper (🗑️)
removing git-blame (🗑️)
removing git-branch (🗑️)
removing git-bugreport (🗑️)
removing git-bundle (🗑️)
removing git-cat-file (🗑️)
removing git-check-attr (🗑️)
removing git-check-ignore (🗑️)
removing git-check-mailmap (🗑️)
removing git-check-ref-format (🗑️)
removing git-checkout (🗑️)
removing git-checkout--worker (🗑️)
removing git-checkout-index (🗑️)
removing git-cherry (🗑️)
removing git-cherry-pick (🗑️)
removing git-clean (🗑️)
removing git-clone (🗑️)
removing git-column (🗑️)
removing git-commit (🗑️)
removing git-commit-graph (🗑️)
removing git-commit-tree (🗑️)
removing git-config (🗑️)
removing git-count-objects (🗑️)
removing git-credential (🗑️)
removing git-credential-cache (🗑️)
removing git-credential-cache--daemon (🗑️)
removing git-credential-store (🗑️)
removing git-cvsexportcommit (🗑️)
removing git-cvsimport (🗑️)
removing git-cvsserver (🗑️)
removing git-daemon (🗑️)
removing git-describe (🗑️)
removing git-diff (🗑️)
removing git-diff-files (🗑️)
removing git-diff-index (🗑️)
removing git-diff-tree (🗑️)
removing git-difftool (🗑️)
removing git-difftool--helper (🗑️)
removing git-env--helper (🗑️)
removing git-fast-export (🗑️)
removing git-fast-import (🗑️)
removing git-fetch (🗑️)
removing git-fetch-pack (🗑️)
removing git-filter-branch (🗑️)
removing git-fmt-merge-msg (🗑️)
removing git-for-each-ref (🗑️)
removing git-for-each-repo (🗑️)
removing git-format-patch (🗑️)
removing git-fsck (🗑️)
removing git-fsck-objects (🗑️)
removing git-gc (🗑️)
removing git-get-tar-commit-id (🗑️)
removing git-grep (🗑️)
removing git-gui/GIT-GUI-VARS (🗑️)
removing git-gui/GIT-VERSION-FILE (🗑️)
removing git-gui/git-gui (🗑️)
removing git-gui/lib/tclIndex (🗑️)
removing git-gui/po/bg.msg (🗑️)
removing git-gui/po/de.msg (🗑️)
removing git-gui/po/el.msg (🗑️)
removing git-gui/po/fr.msg (🗑️)
removing git-gui/po/hu.msg (🗑️)
removing git-gui/po/it.msg (🗑️)
removing git-gui/po/ja.msg (🗑️)
removing git-gui/po/nb.msg (🗑️)
removing git-gui/po/pt_br.msg (🗑️)
removing git-gui/po/pt_pt.msg (🗑️)
removing git-gui/po/ru.msg (🗑️)
removing git-gui/po/sv.msg (🗑️)
removing git-gui/po/vi.msg (🗑️)
removing git-gui/po/zh_cn.msg (🗑️)
removing git-hash-object (🗑️)
removing git-help (🗑️)
removing git-hook (🗑️)
removing git-http-backend (🗑️)
removing git-http-fetch (🗑️)
removing git-http-push (🗑️)
removing git-imap-send (🗑️)
removing git-index-pack (🗑️)
removing git-init (🗑️)
removing git-init-db (🗑️)
removing git-instaweb (🗑️)
removing git-interpret-trailers (🗑️)
removing git-log (🗑️)
removing git-ls-files (🗑️)
removing git-ls-remote (🗑️)
removing git-ls-tree (🗑️)
removing git-mailinfo (🗑️)
removing git-mailsplit (🗑️)
removing git-maintenance (🗑️)
removing git-merge (🗑️)
removing git-merge-base (🗑️)
removing git-merge-file (🗑️)
removing git-merge-index (🗑️)
removing git-merge-octopus (🗑️)
removing git-merge-one-file (🗑️)
removing git-merge-ours (🗑️)
removing git-merge-recursive (🗑️)
removing git-merge-resolve (🗑️)
removing git-merge-subtree (🗑️)
removing git-merge-tree (🗑️)
removing git-mergetool (🗑️)
removing git-mergetool--lib (🗑️)
removing git-mktag (🗑️)
removing git-mktree (🗑️)
removing git-multi-pack-index (🗑️)
removing git-mv (🗑️)
removing git-name-rev (🗑️)
removing git-notes (🗑️)
removing git-p4 (🗑️)
removing git-pack-objects (🗑️)
removing git-pack-redundant (🗑️)
removing git-pack-refs (🗑️)
removing git-patch-id (🗑️)
removing git-prune (🗑️)
removing git-prune-packed (🗑️)
removing git-pull (🗑️)
removing git-push (🗑️)
removing git-quiltimport (🗑️)
removing git-range-diff (🗑️)
removing git-read-tree (🗑️)
removing git-rebase (🗑️)
removing git-receive-pack (🗑️)
removing git-reflog (🗑️)
removing git-remote (🗑️)
removing git-remote-ext (🗑️)
removing git-remote-fd (🗑️)
removing git-remote-ftp (🗑️)
removing git-remote-ftps (🗑️)
removing git-remote-http (🗑️)
removing git-remote-https (🗑️)
removing git-repack (🗑️)
removing git-replace (🗑️)
removing git-request-pull (🗑️)
removing git-rerere (🗑️)
removing git-reset (🗑️)
removing git-restore (🗑️)
removing git-rev-list (🗑️)
removing git-rev-parse (🗑️)
removing git-revert (🗑️)
removing git-rm (🗑️)
removing git-send-email (🗑️)
removing git-send-pack (🗑️)
removing git-sh-i18n (🗑️)
removing git-sh-i18n--envsubst (🗑️)
removing git-sh-setup (🗑️)
removing git-shell (🗑️)
removing git-shortlog (🗑️)
removing git-show (🗑️)
removing git-show-branch (🗑️)
removing git-show-index (🗑️)
removing git-show-ref (🗑️)
removing git-sparse-checkout (🗑️)
removing git-stage (🗑️)
removing git-stash (🗑️)
removing git-status (🗑️)
removing git-stripspace (🗑️)
removing git-submodule (🗑️)
removing git-submodule--helper (🗑️)
removing git-svn (🗑️)
removing git-switch (🗑️)
removing git-symbolic-ref (🗑️)
removing git-tag (🗑️)
removing git-unpack-file (🗑️)
removing git-unpack-objects (🗑️)
removing git-update-index (🗑️)
removing git-update-ref (🗑️)
removing git-update-server-info (🗑️)
removing git-upload-archive (🗑️)
removing git-upload-pack (🗑️)
removing git-var (🗑️)
removing git-verify-commit (🗑️)
removing git-verify-pack (🗑️)
removing git-verify-tag (🗑️)
removing git-web--browse (🗑️)
removing git-whatchanged (🗑️)
removing git-worktree (🗑️)
removing git-write-tree (🗑️)
removing git.o (🗑️)
removing gitk-git/GIT-TCLTK-VARS (🗑️)
removing gitk-git/gitk-wish (🗑️)
removing gitk-git/po/bg.msg (🗑️)
removing gitk-git/po/ca.msg (🗑️)
removing gitk-git/po/de.msg (🗑️)
removing gitk-git/po/es.msg (🗑️)
removing gitk-git/po/fr.msg (🗑️)
removing gitk-git/po/hu.msg (🗑️)
removing gitk-git/po/it.msg (🗑️)
removing gitk-git/po/ja.msg (🗑️)
removing gitk-git/po/pt_br.msg (🗑️)
removing gitk-git/po/pt_pt.msg (🗑️)
removing gitk-git/po/ru.msg (🗑️)
removing gitk-git/po/sv.msg (🗑️)
removing gitk-git/po/vi.msg (🗑️)
removing gitk-git/po/zh_cn.msg (🗑️)
removing gitweb/GITWEB-BUILD-OPTIONS (🗑️)
removing gitweb/gitweb.cgi (🗑️)
removing gitweb/static/gitweb.js (🗑️)
removing gpg-interface.o (🗑️)
removing graph.o (🗑️)
removing grep.o (🗑️)
removing hash-lookup.o (🗑️)
removing hashmap.o (🗑️)
removing help.o (🗑️)
removing hex.o (🗑️)
removing hook-list.h (🗑️)
removing hook.o (🗑️)
removing http-backend.o (🗑️)
removing http-fetch.o (🗑️)
removing http-push.o (🗑️)
removing http-walker.o (🗑️)
removing http.o (🗑️)
removing ident.o (🗑️)
removing imap-send.o (🗑️)
removing json-writer.o (🗑️)
removing kwset.o (🗑️)
removing levenshtein.o (🗑️)
removing libgit.a (🗑️)
removing line-log.o (🗑️)
removing line-range.o (🗑️)
removing linear-assignment.o (🗑️)
removing list-objects-filter-options.o (🗑️)
removing list-objects-filter.o (🗑️)
removing list-objects.o (🗑️)
removing ll-merge.o (🗑️)
removing lockfile.o (🗑️)
removing log-tree.o (🗑️)
removing ls-refs.o (🗑️)
removing mailinfo.o (🗑️)
removing mailmap.o (🗑️)
removing match-trees.o (🗑️)
removing mem-pool.o (🗑️)
removing merge-blobs.o (🗑️)
removing merge-ort-wrappers.o (🗑️)
removing merge-ort.o (🗑️)
removing merge-recursive.o (🗑️)
removing merge.o (🗑️)
removing mergesort.o (🗑️)
removing midx.o (🗑️)
removing name-hash.o (🗑️)
removing negotiator/.depend/ (🗑️)
removing negotiator/default.o (🗑️)
removing negotiator/noop.o (🗑️)
removing negotiator/skipping.o (🗑️)
removing notes-cache.o (🗑️)
removing notes-merge.o (🗑️)
removing notes-utils.o (🗑️)
removing notes.o (🗑️)
removing object-file.o (🗑️)
removing object-name.o (🗑️)
removing object.o (🗑️)
removing oid-array.o (🗑️)
removing oidmap.o (🗑️)
removing oidset.o (🗑️)
removing oidtree.o (🗑️)
removing pack-bitmap-write.o (🗑️)
removing pack-bitmap.o (🗑️)
removing pack-check.o (🗑️)
removing pack-objects.o (🗑️)
removing pack-revindex.o (🗑️)
removing pack-write.o (🗑️)
removing packfile.o (🗑️)
removing pager.o (🗑️)
removing parallel-checkout.o (🗑️)
removing parse-options-cb.o (🗑️)
removing parse-options.o (🗑️)
removing patch-delta.o (🗑️)
removing patch-ids.o (🗑️)
removing path.o (🗑️)
removing pathspec.o (🗑️)
removing perl/build/ (🗑️)
removing pkt-line.o (🗑️)
removing po/build/ (🗑️)
removing preload-index.o (🗑️)
removing pretty.o (🗑️)
removing prio-queue.o (🗑️)
removing progress.o (🗑️)
removing promisor-remote.o (🗑️)
removing prompt.o (🗑️)
removing protocol-caps.o (🗑️)
removing protocol.o (🗑️)
removing prune-packed.o (🗑️)
removing quote.o (🗑️)
removing range-diff.o (🗑️)
removing reachable.o (🗑️)
removing read-cache.o (🗑️)
removing rebase-interactive.o (🗑️)
removing rebase.o (🗑️)
removing ref-filter.o (🗑️)
removing reflog-walk.o (🗑️)
removing refs.o (🗑️)
removing refs/.depend/ (🗑️)
removing refs/debug.o (🗑️)
removing refs/files-backend.o (🗑️)
removing refs/iterator.o (🗑️)
removing refs/packed-backend.o (🗑️)
removing refs/ref-cache.o (🗑️)
removing refspec.o (🗑️)
removing reftable/.depend/ (🗑️)
removing reftable/basics.o (🗑️)
removing reftable/basics_test.o (🗑️)
removing reftable/block.o (🗑️)
removing reftable/block_test.o (🗑️)
removing reftable/blocksource.o (🗑️)
removing reftable/dump.o (🗑️)
removing reftable/error.o (🗑️)
removing reftable/generic.o (🗑️)
removing reftable/iter.o (🗑️)
removing reftable/libreftable.a (🗑️)
removing reftable/libreftable_test.a (🗑️)
removing reftable/merged.o (🗑️)
removing reftable/merged_test.o (🗑️)
removing reftable/pq.o (🗑️)
removing reftable/pq_test.o (🗑️)
removing reftable/publicbasics.o (🗑️)
removing reftable/reader.o (🗑️)
removing reftable/readwrite_test.o (🗑️)
removing reftable/record.o (🗑️)
removing reftable/record_test.o (🗑️)
removing reftable/refname.o (🗑️)
removing reftable/refname_test.o (🗑️)
removing reftable/stack.o (🗑️)
removing reftable/stack_test.o (🗑️)
removing reftable/test_framework.o (🗑️)
removing reftable/tree.o (🗑️)
removing reftable/tree_test.o (🗑️)
removing reftable/writer.o (🗑️)
removing remote-curl.o (🗑️)
removing remote.o (🗑️)
removing replace-object.o (🗑️)
removing repo-settings.o (🗑️)
removing repository.o (🗑️)
removing rerere.o (🗑️)
removing reset.o (🗑️)
removing resolve-undo.o (🗑️)
removing revision.o (🗑️)
removing run-command.o (🗑️)
removing send-pack.o (🗑️)
removing sequencer.o (🗑️)
removing serve.o (🗑️)
removing server-info.o (🗑️)
removing setup.o (🗑️)
removing sh-i18n--envsubst.o (🗑️)
removing sha1dc/.depend/ (🗑️)
removing sha1dc/sha1.o (🗑️)
removing sha1dc/ubc_check.o (🗑️)
removing sha1dc_git.o (🗑️)
removing sha256/block/.depend/ (🗑️)
removing sha256/block/sha256.o (🗑️)
removing shallow.o (🗑️)
removing shell.o (🗑️)
removing sideband.o (🗑️)
removing sigchain.o (🗑️)
removing sparse-index.o (🗑️)
removing split-index.o (🗑️)
removing stable-qsort.o (🗑️)
removing strbuf.o (🗑️)
removing streaming.o (🗑️)
removing string-list.o (🗑️)
removing strmap.o (🗑️)
removing strvec.o (🗑️)
removing sub-process.o (🗑️)
removing submodule-config.o (🗑️)
removing submodule.o (🗑️)
removing symlinks.o (🗑️)
removing t/helper/.depend/ (🗑️)
removing t/helper/test-advise.o (🗑️)
removing t/helper/test-bitmap.o (🗑️)
removing t/helper/test-bloom.o (🗑️)
removing t/helper/test-chmtime.o (🗑️)
removing t/helper/test-config.o (🗑️)
removing t/helper/test-crontab.o (🗑️)
removing t/helper/test-csprng.o (🗑️)
removing t/helper/test-ctype.o (🗑️)
removing t/helper/test-date.o (🗑️)
removing t/helper/test-delta.o (🗑️)
removing t/helper/test-dir-iterator.o (🗑️)
removing t/helper/test-drop-caches.o (🗑️)
removing t/helper/test-dump-cache-tree.o (🗑️)
removing t/helper/test-dump-fsmonitor.o (🗑️)
removing t/helper/test-dump-split-index.o (🗑️)
removing t/helper/test-dump-untracked-cache.o (🗑️)
removing t/helper/test-example-decorate.o (🗑️)
removing t/helper/test-fake-ssh (🗑️)
removing t/helper/test-fake-ssh.o (🗑️)
removing t/helper/test-fast-rebase.o (🗑️)
removing t/helper/test-genrandom.o (🗑️)
removing t/helper/test-genzeros.o (🗑️)
removing t/helper/test-getcwd.o (🗑️)
removing t/helper/test-hash-speed.o (🗑️)
removing t/helper/test-hash.o (🗑️)
removing t/helper/test-hashmap.o (🗑️)
removing t/helper/test-index-version.o (🗑️)
removing t/helper/test-json-writer.o (🗑️)
removing t/helper/test-lazy-init-name-hash.o (🗑️)
removing t/helper/test-match-trees.o (🗑️)
removing t/helper/test-mergesort.o (🗑️)
removing t/helper/test-mktemp.o (🗑️)
removing t/helper/test-oid-array.o (🗑️)
removing t/helper/test-oidmap.o (🗑️)
removing t/helper/test-oidtree.o (🗑️)
removing t/helper/test-online-cpus.o (🗑️)
removing t/helper/test-parse-options.o (🗑️)
removing t/helper/test-parse-pathspec-file.o (🗑️)
removing t/helper/test-partial-clone.o (🗑️)
removing t/helper/test-path-utils.o (🗑️)
removing t/helper/test-pcre2-config.o (🗑️)
removing t/helper/test-pkt-line.o (🗑️)
removing t/helper/test-prio-queue.o (🗑️)
removing t/helper/test-proc-receive.o (🗑️)
removing t/helper/test-progress.o (🗑️)
removing t/helper/test-reach.o (🗑️)
removing t/helper/test-read-cache.o (🗑️)
removing t/helper/test-read-graph.o (🗑️)
removing t/helper/test-read-midx.o (🗑️)
removing t/helper/test-ref-store.o (🗑️)
removing t/helper/test-reftable.o (🗑️)
removing t/helper/test-regex.o (🗑️)
removing t/helper/test-repository.o (🗑️)
removing t/helper/test-revision-walking.o (🗑️)
removing t/helper/test-run-command.o (🗑️)
removing t/helper/test-scrap-cache-tree.o (🗑️)
removing t/helper/test-serve-v2.o (🗑️)
removing t/helper/test-sha1.o (🗑️)
removing t/helper/test-sha256.o (🗑️)
removing t/helper/test-sigchain.o (🗑️)
removing t/helper/test-simple-ipc.o (🗑️)
removing t/helper/test-strcmp-offset.o (🗑️)
removing t/helper/test-string-list.o (🗑️)
removing t/helper/test-submodule-config.o (🗑️)
removing t/helper/test-submodule-nested-repo-config.o (🗑️)
removing t/helper/test-subprocess.o (🗑️)
removing t/helper/test-tool (🗑️)
removing t/helper/test-tool.o (🗑️)
removing t/helper/test-trace2.o (🗑️)
removing t/helper/test-urlmatch-normalization.o (🗑️)
removing t/helper/test-userdiff.o (🗑️)
removing t/helper/test-wildmatch.o (🗑️)
removing t/helper/test-windows-named-pipe.o (🗑️)
removing t/helper/test-write-cache.o (🗑️)
removing t/helper/test-xml-encode.o (🗑️)
removing tag.o (🗑️)
removing tempfile.o (🗑️)
removing templates/blt/ (🗑️)
removing templates/boilerplates.made (🗑️)
removing thread-utils.o (🗑️)
removing tmp-objdir.o (🗑️)
removing trace.o (🗑️)
removing trace2.o (🗑️)
removing trace2/.depend/ (🗑️)
removing trace2/tr2_cfg.o (🗑️)
removing trace2/tr2_cmd_name.o (🗑️)
removing trace2/tr2_dst.o (🗑️)
removing trace2/tr2_sid.o (🗑️)
removing trace2/tr2_sysenv.o (🗑️)
removing trace2/tr2_tbuf.o (🗑️)
removing trace2/tr2_tgt_event.o (🗑️)
removing trace2/tr2_tgt_normal.o (🗑️)
removing trace2/tr2_tgt_perf.o (🗑️)
removing trace2/tr2_tls.o (🗑️)
removing trailer.o (🗑️)
removing transport-helper.o (🗑️)
removing transport.o (🗑️)
removing tree-diff.o (🗑️)
removing tree-walk.o (🗑️)
removing tree.o (🗑️)
removing unix-socket.o (🗑️)
removing unix-stream-server.o (🗑️)
removing unpack-trees.o (🗑️)
removing upload-pack.o (🗑️)
removing url.o (🗑️)
removing urlmatch.o (🗑️)
removing usage.o (🗑️)
removing userdiff.o (🗑️)
removing utf8.o (🗑️)
removing varint.o (🗑️)
removing version.o (🗑️)
removing versioncmp.o (🗑️)
removing walker.o (🗑️)
removing wildmatch.o (🗑️)
removing worktree.o (🗑️)
removing wrapper.o (🗑️)
removing write-or-die.o (🗑️)
removing ws.o (🗑️)
removing wt-status.o (🗑️)
removing xdiff-interface.o (🗑️)
removing xdiff/.depend/ (🗑️)
removing xdiff/lib.a (🗑️)
removing xdiff/xdiffi.o (🗑️)
removing xdiff/xemit.o (🗑️)
removing xdiff/xhistogram.o (🗑️)
removing xdiff/xmerge.o (🗑️)
removing xdiff/xpatience.o (🗑️)
removing xdiff/xprepare.o (🗑️)
removing xdiff/xutils.o (🗑️)
removing zlib.o (🗑️)
ek@apok:~/src/git ((4a0479086a...)|BISECTING)$ git bisect old
Bisecting: 507 revisions left to test after this (roughly 9 steps)
[e7109d5c7c6863be1a0793ffdc64b6dba416a7d5] Merge branch 'ld/sparse-index-bash-completion'
ek@apok:~/src/git ((e7109d5c7c...)|BISECTING)$ make prefix="$HOME/mygit" -j5
GIT_VERSION = 2.36.0.rc0.21.ge7109d5c7c
* new build flags
CC fuzz-commit-graph.o
CC fuzz-pack-headers.o
CC fuzz-pack-idx.o
CC daemon.o
CC common-main.o
* new link flags
CC abspath.o
CC add-interactive.o
CC add-patch.o
CC advice.o
CC alias.o
CC alloc.o
CC apply.o
CC archive-tar.o
CC archive-zip.o
CC archive.o
* new prefix flags
CC base85.o
CC bisect.o
CC blame.o
CC blob.o
CC bloom.o
CC branch.o
CC bulk-checkin.o
CC bundle.o
CC cache-tree.o
CC cbtree.o
CC chdir-notify.o
CC checkout.o
CC chunk-format.o
CC color.o
CC column.o
CC combine-diff.o
CC commit-graph.o
CC commit-reach.o
CC commit.o
CC compat/obstack.o
CC compat/terminal.o
CC compat/zlib-uncompress2.o
CC config.o
CC connect.o
CC connected.o
CC convert.o
CC copy.o
CC credential.o
CC csum-file.o
CC ctype.o
CC date.o
CC decorate.o
CC delta-islands.o
CC diff-delta.o
CC diff-merges.o
CC diff-lib.o
CC diff-no-index.o
CC diff.o
CC diffcore-break.o
CC diffcore-delta.o
CC diffcore-order.o
CC diffcore-pickaxe.o
CC diffcore-rename.o
CC diffcore-rotate.o
CC dir-iterator.o
CC dir.o
CC editor.o
CC entry.o
CC environment.o
CC ewah/bitmap.o
CC ewah/ewah_bitmap.o
CC ewah/ewah_io.o
CC ewah/ewah_rlw.o
CC exec-cmd.o
CC fetch-negotiator.o
CC fetch-pack.o
CC fmt-merge-msg.o
CC fsck.o
CC fsmonitor.o
CC fsmonitor-ipc.o
CC fsmonitor-settings.o
CC gettext.o
CC gpg-interface.o
CC graph.o
CC grep.o
CC hash-lookup.o
CC hashmap.o
GEN command-list.h
CC hex.o
CC hook.o
CC ident.o
CC json-writer.o
CC kwset.o
CC levenshtein.o
CC line-log.o
CC line-range.o
CC linear-assignment.o
CC list-objects-filter-options.o
CC list-objects-filter.o
CC list-objects.o
CC ll-merge.o
CC lockfile.o
CC log-tree.o
CC ls-refs.o
CC mailinfo.o
CC mailmap.o
CC match-trees.o
CC mem-pool.o
CC merge-blobs.o
CC merge-ort.o
CC merge-ort-wrappers.o
CC merge-recursive.o
CC merge.o
CC mergesort.o
CC midx.o
CC name-hash.o
CC negotiator/default.o
CC negotiator/noop.o
CC negotiator/skipping.o
CC notes-cache.o
CC notes-merge.o
CC notes-utils.o
CC notes.o
CC object-file.o
CC object-name.o
CC object.o
CC oid-array.o
CC oidmap.o
CC oidset.o
CC oidtree.o
CC pack-bitmap-write.o
CC pack-bitmap.o
CC pack-check.o
CC pack-objects.o
CC pack-revindex.o
CC pack-write.o
CC packfile.o
CC pager.o
CC parallel-checkout.o
CC parse-options-cb.o
CC parse-options.o
CC patch-delta.o
CC patch-ids.o
CC path.o
CC pathspec.o
CC pkt-line.o
CC preload-index.o
CC pretty.o
CC prio-queue.o
CC progress.o
CC promisor-remote.o
CC prompt.o
CC protocol.o
CC protocol-caps.o
CC prune-packed.o
CC quote.o
CC range-diff.o
CC reachable.o
CC read-cache.o
CC rebase-interactive.o
CC rebase.o
CC ref-filter.o
CC reflog-walk.o
CC reflog.o
CC refs.o
CC refs/debug.o
CC refs/files-backend.o
CC refs/iterator.o
CC refs/packed-backend.o
CC refs/ref-cache.o
CC refspec.o
CC remote.o
CC replace-object.o
CC repo-settings.o
CC repository.o
CC rerere.o
CC reset.o
CC resolve-undo.o
CC revision.o
CC run-command.o
CC send-pack.o
CC sequencer.o
CC serve.o
CC server-info.o
CC setup.o
CC shallow.o
CC sideband.o
CC sigchain.o
CC sparse-index.o
CC split-index.o
CC stable-qsort.o
CC strbuf.o
CC streaming.o
CC string-list.o
CC strmap.o
CC strvec.o
CC sub-process.o
CC submodule-config.o
CC submodule.o
CC symlinks.o
CC tag.o
CC tempfile.o
CC thread-utils.o
CC tmp-objdir.o
CC trace.o
CC trace2.o
CC trace2/tr2_cfg.o
CC trace2/tr2_cmd_name.o
CC trace2/tr2_dst.o
CC trace2/tr2_sid.o
CC trace2/tr2_sysenv.o
CC trace2/tr2_tbuf.o
CC trace2/tr2_tgt_event.o
CC trace2/tr2_tgt_normal.o
CC trace2/tr2_tgt_perf.o
CC trace2/tr2_tls.o
CC trailer.o
CC transport-helper.o
CC transport.o
CC tree-diff.o
CC tree-walk.o
CC tree.o
CC unpack-trees.o
CC upload-pack.o
CC url.o
CC urlmatch.o
CC usage.o
CC userdiff.o
CC utf8.o
CC varint.o
CC versioncmp.o
CC walker.o
CC wildmatch.o
CC worktree.o
CC wrapper.o
CC write-or-die.o
CC ws.o
CC wt-status.o
CC xdiff-interface.o
CC zlib.o
CC unix-socket.o
CC unix-stream-server.o
CC compat/simple-ipc/ipc-shared.o
CC compat/simple-ipc/ipc-unix-socket.o
CC sha1dc_git.o
CC sha1dc/sha1.o
CC sha1dc/ubc_check.o
CC sha256/block/sha256.o
CC compat/linux/procinfo.o
CC compat/fopen.o
CC compat/strlcpy.o
CC compat/qsort_s.o
CC xdiff/xdiffi.o
CC xdiff/xemit.o
CC xdiff/xhistogram.o
CC xdiff/xmerge.o
CC xdiff/xpatience.o
CC xdiff/xprepare.o
CC xdiff/xutils.o
CC reftable/basics.o
CC reftable/error.o
CC reftable/block.o
CC reftable/blocksource.o
CC reftable/iter.o
CC reftable/publicbasics.o
CC reftable/merged.o
CC reftable/pq.o
CC reftable/reader.o
CC reftable/record.o
CC reftable/refname.o
CC reftable/generic.o
CC reftable/stack.o
CC reftable/tree.o
CC reftable/writer.o
CC http-backend.o
CC imap-send.o
CC http.o
CC sh-i18n--envsubst.o
CC shell.o
CC http-walker.o
CC http-fetch.o
CC http-push.o
CC remote-curl.o
* new perl-specific parameters
* new script parameters
* new Python interpreter location
GEN git-instaweb
CC git.o
CC builtin/add.o
CC builtin/am.o
CC builtin/annotate.o
CC builtin/apply.o
CC builtin/archive.o
CC builtin/bisect--helper.o
CC builtin/blame.o
CC builtin/branch.o
GEN hook-list.h
CC builtin/bundle.o
CC builtin/cat-file.o
CC builtin/check-attr.o
CC builtin/check-ignore.o
CC builtin/check-mailmap.o
CC builtin/check-ref-format.o
CC builtin/checkout--worker.o
CC builtin/checkout-index.o
CC builtin/checkout.o
CC builtin/clean.o
CC builtin/clone.o
CC builtin/column.o
CC builtin/commit-graph.o
CC builtin/commit-tree.o
CC builtin/commit.o
CC builtin/config.o
CC builtin/count-objects.o
CC builtin/credential-cache--daemon.o
CC builtin/credential-cache.o
CC builtin/credential-store.o
CC builtin/credential.o
CC builtin/describe.o
CC builtin/diff-files.o
CC builtin/diff-index.o
CC builtin/diff-tree.o
CC builtin/diff.o
CC builtin/difftool.o
CC builtin/env--helper.o
CC builtin/fast-export.o
CC builtin/fast-import.o
CC builtin/fetch-pack.o
CC builtin/fetch.o
CC builtin/fmt-merge-msg.o
CC builtin/for-each-ref.o
CC builtin/for-each-repo.o
CC builtin/fsck.o
CC builtin/fsmonitor--daemon.o
CC builtin/gc.o
CC builtin/get-tar-commit-id.o
CC builtin/grep.o
CC builtin/hash-object.o
GEN config-list.h
CC builtin/hook.o
CC builtin/index-pack.o
CC builtin/init-db.o
CC builtin/interpret-trailers.o
CC builtin/log.o
CC builtin/ls-files.o
CC builtin/ls-remote.o
CC builtin/ls-tree.o
CC builtin/mailinfo.o
CC builtin/mailsplit.o
CC builtin/merge-base.o
CC builtin/merge-file.o
CC builtin/merge-index.o
CC builtin/merge-ours.o
CC builtin/merge-recursive.o
CC builtin/merge-tree.o
CC builtin/merge.o
CC builtin/mktag.o
CC builtin/mktree.o
CC builtin/multi-pack-index.o
CC builtin/mv.o
CC builtin/name-rev.o
CC builtin/notes.o
CC builtin/pack-objects.o
CC builtin/pack-redundant.o
CC builtin/pack-refs.o
CC builtin/patch-id.o
CC builtin/prune-packed.o
CC builtin/prune.o
CC builtin/pull.o
CC builtin/push.o
CC builtin/range-diff.o
CC builtin/read-tree.o
CC builtin/rebase.o
CC builtin/receive-pack.o
CC builtin/reflog.o
CC builtin/remote-ext.o
CC builtin/remote-fd.o
CC builtin/remote.o
CC builtin/repack.o
CC builtin/replace.o
CC builtin/rerere.o
CC builtin/reset.o
CC builtin/rev-list.o
CC builtin/rev-parse.o
CC builtin/revert.o
CC builtin/rm.o
CC builtin/send-pack.o
CC builtin/shortlog.o
CC builtin/show-branch.o
CC builtin/show-index.o
CC builtin/show-ref.o
CC builtin/sparse-checkout.o
CC builtin/stash.o
CC builtin/stripspace.o
CC builtin/submodule--helper.o
CC builtin/symbolic-ref.o
CC builtin/tag.o
CC builtin/unpack-file.o
CC builtin/unpack-objects.o
CC builtin/update-index.o
CC builtin/update-ref.o
CC builtin/update-server-info.o
CC builtin/upload-archive.o
CC builtin/upload-pack.o
CC builtin/var.o
CC builtin/verify-commit.o
CC builtin/verify-pack.o
CC builtin/verify-tag.o
CC builtin/worktree.o
CC builtin/write-tree.o
GEN git-mergetool--lib
GEN git-sh-i18n
GEN git-sh-setup
CC attr.o
CC help.o
CC version.o
AR xdiff/lib.a
AR reftable/libreftable.a
GEN git-bisect
GEN git-difftool--helper
GEN git-filter-branch
GEN git-merge-octopus
GEN git-merge-one-file
GEN git-merge-resolve
GEN git-mergetool
GEN git-quiltimport
GEN git-request-pull
GEN git-submodule
GEN git-web--browse
GEN GIT-PERL-HEADER
GEN git-p4
CC builtin/bugreport.o
CC builtin/help.o
GEN git-add--interactive
GEN git-archimport
GEN git-cvsexportcommit
GEN git-cvsimport
GEN git-cvsserver
GEN git-send-email
GEN git-svn
AR libgit.a
LINK git-daemon
LINK git-http-backend
LINK git-imap-send
LINK git-sh-i18n--envsubst
LINK git-shell
LINK git-http-fetch
LINK git-http-push
LINK git-remote-http
LINK git
LN/CP git-remote-https
LN/CP git-remote-ftp
LN/CP git-remote-ftps
BUILTIN git-add
BUILTIN git-am
BUILTIN git-annotate
BUILTIN git-apply
BUILTIN git-archive
BUILTIN git-bisect--helper
BUILTIN git-blame
BUILTIN git-branch
BUILTIN git-bugreport
BUILTIN git-bundle
BUILTIN git-cat-file
BUILTIN git-check-attr
BUILTIN git-check-ignore
BUILTIN git-check-mailmap
BUILTIN git-check-ref-format
BUILTIN git-checkout--worker
BUILTIN git-checkout-index
BUILTIN git-checkout
BUILTIN git-clean
BUILTIN git-clone
BUILTIN git-column
BUILTIN git-commit-graph
BUILTIN git-commit-tree
BUILTIN git-commit
BUILTIN git-config
BUILTIN git-count-objects
BUILTIN git-credential-cache--daemon
BUILTIN git-credential-cache
BUILTIN git-credential-store
BUILTIN git-credential
BUILTIN git-describe
BUILTIN git-diff-files
BUILTIN git-diff-index
BUILTIN git-diff-tree
BUILTIN git-diff
BUILTIN git-env--helper
BUILTIN git-difftool
BUILTIN git-fast-export
BUILTIN git-fast-import
BUILTIN git-fetch-pack
BUILTIN git-fetch
BUILTIN git-fmt-merge-msg
BUILTIN git-for-each-ref
BUILTIN git-for-each-repo
BUILTIN git-fsck
BUILTIN git-fsmonitor--daemon
BUILTIN git-gc
BUILTIN git-get-tar-commit-id
BUILTIN git-grep
BUILTIN git-hash-object
BUILTIN git-help
BUILTIN git-hook
BUILTIN git-init-db
BUILTIN git-interpret-trailers
BUILTIN git-index-pack
BUILTIN git-log
BUILTIN git-ls-remote
BUILTIN git-ls-files
BUILTIN git-ls-tree
BUILTIN git-mailinfo
BUILTIN git-mailsplit
BUILTIN git-merge-base
BUILTIN git-merge-file
BUILTIN git-merge-index
BUILTIN git-merge-ours
BUILTIN git-merge-recursive
BUILTIN git-merge-tree
BUILTIN git-merge
BUILTIN git-mktag
BUILTIN git-mktree
BUILTIN git-multi-pack-index
BUILTIN git-mv
BUILTIN git-name-rev
BUILTIN git-notes
BUILTIN git-pack-objects
BUILTIN git-pack-redundant
BUILTIN git-pack-refs
BUILTIN git-patch-id
BUILTIN git-prune-packed
BUILTIN git-pull
BUILTIN git-prune
BUILTIN git-push
BUILTIN git-range-diff
BUILTIN git-read-tree
BUILTIN git-rebase
BUILTIN git-receive-pack
BUILTIN git-reflog
BUILTIN git-remote-ext
BUILTIN git-remote-fd
BUILTIN git-remote
BUILTIN git-repack
BUILTIN git-replace
BUILTIN git-rerere
BUILTIN git-reset
BUILTIN git-rev-list
BUILTIN git-rev-parse
BUILTIN git-revert
BUILTIN git-rm
BUILTIN git-send-pack
BUILTIN git-shortlog
BUILTIN git-show-index
BUILTIN git-show-ref
BUILTIN git-show-branch
BUILTIN git-sparse-checkout
BUILTIN git-stash
BUILTIN git-stripspace
BUILTIN git-submodule--helper
BUILTIN git-symbolic-ref
BUILTIN git-tag
BUILTIN git-unpack-file
BUILTIN git-unpack-objects
BUILTIN git-update-index
BUILTIN git-update-ref
BUILTIN git-update-server-info
BUILTIN git-upload-archive
BUILTIN git-upload-pack
BUILTIN git-var
BUILTIN git-verify-commit
BUILTIN git-verify-pack
BUILTIN git-verify-tag
BUILTIN git-worktree
BUILTIN git-write-tree
BUILTIN git-cherry
BUILTIN git-cherry-pick
BUILTIN git-format-patch
BUILTIN git-fsck-objects
BUILTIN git-init
BUILTIN git-maintenance
BUILTIN git-merge-subtree
BUILTIN git-show
BUILTIN git-restore
BUILTIN git-stage
BUILTIN git-status
BUILTIN git-switch
BUILTIN git-whatchanged
SUBDIR git-gui
GITGUI_VERSION = 0.21.0.99.gdf4f9
* new locations or Tcl/Tk interpreter
MSGFMT po/bg.msg MSGFMT po/el.msg MSGFMT po/de.msg MSGFMT po/fr.msg MSGFMT po/hu.msg 381 translated, 4 fuzzy, 6 untranslated.
520 translated.
579 translated.
MSGFMT po/it.msg 565 translated.
MSGFMT po/ja.msg MSGFMT po/nb.msg MSGFMT po/pt_br.msg 514 translated.
MSGFMT po/pt_pt.msg 546 translated, 1 untranslated.
519 translated, 1 untranslated.
MSGFMT po/ru.msg 474 translated, 39 untranslated.
550 translated.
MSGFMT po/sv.msg MSGFMT po/vi.msg 520 translated.
MSGFMT po/zh_cn.msg GEN git-gui
579 translated.
INDEX lib/
366 translated, 7 fuzzy, 17 untranslated.
547 translated.
543 translated.
SUBDIR gitk-git
Generating catalog po/bg.msg
msgfmt --statistics --tcl po/bg.po -l bg -d po/
Generating catalog po/ca.msg
* new Tcl/Tk interpreter location
msgfmt --statistics --tcl po/ca.po -l ca -d po/
Generating catalog po/de.msg
msgfmt --statistics --tcl po/de.po -l de -d po/
Generating catalog po/es.msg
msgfmt --statistics --tcl po/es.po -l es -d po/
Generating catalog po/fr.msg
msgfmt --statistics --tcl po/fr.po -l fr -d po/
307 translated messages.
317 translated messages.
307 translated messages.
Generating catalog po/hu.msg
msgfmt --statistics --tcl po/hu.po -l hu -d po/
Generating catalog po/it.msg
Generating catalog po/ja.msg
msgfmt --statistics --tcl po/it.po -l it -d po/
msgfmt --statistics --tcl po/ja.po -l ja -d po/
311 translated messages.
184 translated messages, 46 fuzzy translations, 77 untranslated messages.
Generating catalog po/pt_br.msg
msgfmt --statistics --tcl po/pt_br.po -l pt_br -d po/
Generating catalog po/pt_pt.msg
msgfmt --statistics --tcl po/pt_pt.po -l pt_pt -d po/
277 translated messages, 18 fuzzy translations, 12 untranslated messages.
274 translated messages, 17 fuzzy translations, 16 untranslated messages.
311 translated messages.
Generating catalog po/ru.msg
Generating catalog po/sv.msg
msgfmt --statistics --tcl po/ru.po -l ru -d po/
msgfmt --statistics --tcl po/sv.po -l sv -d po/
Generating catalog po/vi.msg
279 translated messages, 16 fuzzy translations, 12 untranslated messages.
msgfmt --statistics --tcl po/vi.po -l vi -d po/
311 translated messages.
Generating catalog po/zh_cn.msg
317 translated messagesmsgfmt --statistics --tcl po/zh_cn.po -l zh_cn -d po/
.
GEN gitk-wish
311 translated messages.
307 translated messages.
317 translated messages.
SUBDIR templates
MKDIR -p po/build/locale/bg/LC_MESSAGES
MSGFMT po/build/locale/bg/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/ca/LC_MESSAGES
MSGFMT po/build/locale/ca/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/de/LC_MESSAGES
MSGFMT po/build/locale/de/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/el/LC_MESSAGES
MSGFMT po/build/locale/el/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/es/LC_MESSAGES
MSGFMT po/build/locale/es/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/fr/LC_MESSAGES
MSGFMT po/build/locale/fr/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/id/LC_MESSAGES
MSGFMT po/build/locale/id/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/is/LC_MESSAGES
MSGFMT po/build/locale/is/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/it/LC_MESSAGES
MSGFMT po/build/locale/it/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/ko/LC_MESSAGES
MSGFMT po/build/locale/ko/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/pl/LC_MESSAGES
MSGFMT po/build/locale/pl/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/pt_PT/LC_MESSAGES
MSGFMT po/build/locale/pt_PT/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/ru/LC_MESSAGES
MSGFMT po/build/locale/ru/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/sv/LC_MESSAGES
MSGFMT po/build/locale/sv/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/tr/LC_MESSAGES
MSGFMT po/build/locale/tr/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/vi/LC_MESSAGES
MSGFMT po/build/locale/vi/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/zh_CN/LC_MESSAGES
MSGFMT po/build/locale/zh_CN/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/zh_TW/LC_MESSAGES
MSGFMT po/build/locale/zh_TW/LC_MESSAGES/git.mo
MKDIR -p perl/build/lib
GEN perl/build/lib/Git.pm
GEN perl/build/lib/Git/IndexInfo.pm
GEN perl/build/lib/Git/LoadCPAN.pm
MKDIR -p perl/build/lib/Git
GEN perl/build/lib/Git/Packet.pm
GEN perl/build/lib/Git/I18N.pm
GEN perl/build/lib/Git/SVN.pm
MKDIR -p perl/build/lib/Git/LoadCPAN
GEN perl/build/lib/Git/LoadCPAN/Error.pm
MKDIR -p perl/build/lib/Git/SVN
GEN perl/build/lib/Git/SVN/Fetcher.pm
GEN perl/build/lib/Git/SVN/GlobSpec.pm
GEN perl/build/lib/Git/SVN/Log.pm
GEN perl/build/lib/Git/SVN/Editor.pm
GEN perl/build/lib/Git/SVN/Migration.pm
GEN perl/build/lib/Git/SVN/Prompt.pm
GEN perl/build/lib/Git/SVN/Ra.pm
GEN perl/build/lib/Git/SVN/Utils.pm
MKDIR -p perl/build/lib/Git/LoadCPAN/Mail
GEN perl/build/lib/Git/LoadCPAN/Mail/Address.pm
MKDIR -p perl/build/lib/Git/SVN/Memoize
GEN perl/build/lib/Git/SVN/Memoize/YAML.pm
MKDIR -p perl/build/lib/FromCPAN
GEN perl/build/lib/FromCPAN/Error.pm
MKDIR -p perl/build/lib/FromCPAN/Mail
GEN perl/build/lib/FromCPAN/Mail/Address.pm
CC t/helper/test-fake-ssh.o
CC reftable/basics_test.o
CC reftable/block_test.o
CC reftable/dump.o
CC reftable/merged_test.o
CC reftable/pq_test.o
CC reftable/record_test.o
CC reftable/readwrite_test.o
CC reftable/refname_test.o
CC reftable/stack_test.o
CC reftable/test_framework.o
CC reftable/tree_test.o
CC t/helper/test-tool.o
CC t/helper/test-advise.o
CC t/helper/test-bitmap.o
CC t/helper/test-bloom.o
CC t/helper/test-chmtime.o
CC t/helper/test-config.o
CC t/helper/test-crontab.o
CC t/helper/test-csprng.o
CC t/helper/test-ctype.o
CC t/helper/test-date.o
CC t/helper/test-delta.o
CC t/helper/test-dir-iterator.o
CC t/helper/test-drop-caches.o
CC t/helper/test-dump-cache-tree.o
CC t/helper/test-dump-fsmonitor.o
CC t/helper/test-dump-split-index.o
CC t/helper/test-dump-untracked-cache.o
CC t/helper/test-example-decorate.o
CC t/helper/test-fast-rebase.o
CC t/helper/test-fsmonitor-client.o
CC t/helper/test-genrandom.o
CC t/helper/test-genzeros.o
CC t/helper/test-getcwd.o
CC t/helper/test-hash-speed.o
CC t/helper/test-hash.o
CC t/helper/test-hashmap.o
CC t/helper/test-index-version.o
CC t/helper/test-json-writer.o
CC t/helper/test-lazy-init-name-hash.o
CC t/helper/test-match-trees.o
CC t/helper/test-mergesort.o
CC t/helper/test-mktemp.o
CC t/helper/test-oid-array.o
CC t/helper/test-oidmap.o
CC t/helper/test-oidtree.o
CC t/helper/test-online-cpus.o
CC t/helper/test-parse-options.o
CC t/helper/test-parse-pathspec-file.o
CC t/helper/test-partial-clone.o
CC t/helper/test-path-utils.o
CC t/helper/test-pcre2-config.o
CC t/helper/test-pkt-line.o
CC t/helper/test-prio-queue.o
CC t/helper/test-proc-receive.o
CC t/helper/test-progress.o
CC t/helper/test-reach.o
CC t/helper/test-read-cache.o
CC t/helper/test-read-graph.o
CC t/helper/test-read-midx.o
CC t/helper/test-ref-store.o
CC t/helper/test-reftable.o
CC t/helper/test-regex.o
CC t/helper/test-repository.o
CC t/helper/test-revision-walking.o
CC t/helper/test-run-command.o
CC t/helper/test-scrap-cache-tree.o
CC t/helper/test-serve-v2.o
CC t/helper/test-sha1.o
CC t/helper/test-sha256.o
CC t/helper/test-sigchain.o
CC t/helper/test-simple-ipc.o
CC t/helper/test-strcmp-offset.o
CC t/helper/test-string-list.o
CC t/helper/test-submodule-config.o
CC t/helper/test-submodule-nested-repo-config.o
CC t/helper/test-subprocess.o
CC t/helper/test-trace2.o
CC t/helper/test-urlmatch-normalization.o
CC t/helper/test-userdiff.o
CC t/helper/test-wildmatch.o
CC t/helper/test-windows-named-pipe.o
CC t/helper/test-write-cache.o
CC t/helper/test-xml-encode.o
MKDIR -p bin-wrappers
GEN bin-wrappers/git
GEN bin-wrappers/git-receive-pack
GEN bin-wrappers/git-shell
GEN bin-wrappers/git-upload-archive
GEN bin-wrappers/git-upload-pack
GEN bin-wrappers/git-cvsserver
GEN bin-wrappers/test-fake-ssh
GEN bin-wrappers/test-tool
AR reftable/libreftable_test.a
LINK t/helper/test-fake-ssh
LINK t/helper/test-tool
ek@apok:~/src/git ((e7109d5c7c...)|BISECTING)$ make prefix="$HOME/mygit" install
SUBDIR git-gui
SUBDIR gitk-git
SUBDIR templates
install -d -m 755 '/home/ek/mygit/bin'
install -d -m 755 '/home/ek/mygit/libexec/git-core'
install git-daemon git-http-backend git-imap-send git-sh-i18n--envsubst git-shell git-http-fetch git-http-push git-remote-http git-remote-https git-remote-ftp git-remote-ftps '/home/ek/mygit/libexec/git-core'
install git-bisect git-difftool--helper git-filter-branch git-merge-octopus git-merge-one-file git-merge-resolve git-mergetool git-quiltimport git-request-pull git-submodule git-web--browse git-add--interactive git-archimport git-cvsexportcommit git-cvsimport git-cvsserver git-send-email git-svn git-p4 git-instaweb '/home/ek/mygit/libexec/git-core'
install -m 644 git-mergetool--lib git-sh-i18n git-sh-setup '/home/ek/mygit/libexec/git-core'
install git git-receive-pack git-shell git-upload-archive git-upload-pack '/home/ek/mygit/bin'
install git-cvsserver '/home/ek/mygit/bin'
make -C templates DESTDIR='' install
make[1]: Entering directory '/home/ek/src/git/templates'
install -d -m 755 '/home/ek/mygit/share/git-core/templates'
(cd blt && tar cf - .) | \
(cd '/home/ek/mygit/share/git-core/templates' && umask 022 && tar xof -)
make[1]: Leaving directory '/home/ek/src/git/templates'
install -d -m 755 '/home/ek/mygit/libexec/git-core/mergetools'
install -m 644 mergetools/* '/home/ek/mygit/libexec/git-core/mergetools'
install -d -m 755 '/home/ek/mygit/share/locale'
(cd po/build/locale && tar cf - .) | \
(cd '/home/ek/mygit/share/locale' && umask 022 && tar xof -)
install -d -m 755 '/home/ek/mygit/share/perl5'
(cd perl/build/lib && tar cf - .) | \
(cd '/home/ek/mygit/share/perl5' && umask 022 && tar xof -)
make -C gitweb install
make[1]: Entering directory '/home/ek/src/git/gitweb'
make[2]: Entering directory '/home/ek/src/git'
make[2]: 'GIT-VERSION-FILE' is up to date.
make[2]: Leaving directory '/home/ek/src/git'
GEN gitweb.cgi
GEN static/gitweb.js
install -d -m 755 '/home/ek/mygit/share/gitweb'
install -m 755 gitweb.cgi '/home/ek/mygit/share/gitweb'
install -d -m 755 '/home/ek/mygit/share/gitweb/static'
install -m 644 static/gitweb.js static/gitweb.css static/git-logo.png static/git-favicon.png '/home/ek/mygit/share/gitweb/static'
make[1]: Leaving directory '/home/ek/src/git/gitweb'
make -C gitk-git install
make[1]: Entering directory '/home/ek/src/git/gitk-git'
install -d -m 755 '/home/ek/mygit/bin'
install -m 755 gitk-wish '/home/ek/mygit/bin'/gitk
install -d -m 755 '/home/ek/mygit/share/gitk/lib/msgs'
install -m 644 po/bg.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/ca.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/de.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/es.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/fr.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/hu.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/it.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/ja.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/pt_br.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/pt_pt.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/ru.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/sv.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/vi.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/zh_cn.msg '/home/ek/mygit/share/gitk/lib/msgs' && true
make[1]: Leaving directory '/home/ek/src/git/gitk-git'
make -C git-gui gitexecdir='/home/ek/mygit/libexec/git-core' install
make[1]: Entering directory '/home/ek/src/git/git-gui'
DEST /home/ek/mygit/libexec/git-core
INSTALL 755 git-gui
INSTALL 755 git-gui--askpass
LINK git-citool -> git-gui
DEST /home/ek/mygit/share/git-gui/lib
INSTALL 644 tclIndex
INSTALL 644 about.tcl
INSTALL 644 blame.tcl
INSTALL 644 branch_checkout.tcl
INSTALL 644 branch_create.tcl
INSTALL 644 branch_delete.tcl
INSTALL 644 branch_rename.tcl
INSTALL 644 branch.tcl
INSTALL 644 browser.tcl
INSTALL 644 checkout_op.tcl
INSTALL 644 choose_font.tcl
INSTALL 644 choose_repository.tcl
INSTALL 644 choose_rev.tcl
INSTALL 644 chord.tcl
INSTALL 644 class.tcl
INSTALL 644 commit.tcl
INSTALL 644 console.tcl
INSTALL 644 database.tcl
INSTALL 644 date.tcl
INSTALL 644 diff.tcl
INSTALL 644 encoding.tcl
INSTALL 644 error.tcl
INSTALL 644 index.tcl
INSTALL 644 line.tcl
INSTALL 644 logo.tcl
INSTALL 644 merge.tcl
INSTALL 644 mergetool.tcl
INSTALL 644 option.tcl
INSTALL 644 remote_add.tcl
INSTALL 644 remote_branch_delete.tcl
INSTALL 644 remote.tcl
INSTALL 644 search.tcl
INSTALL 644 shortcut.tcl
INSTALL 644 spellcheck.tcl
INSTALL 644 sshkey.tcl
INSTALL 644 status_bar.tcl
INSTALL 644 themed.tcl
INSTALL 644 tools_dlg.tcl
INSTALL 644 tools.tcl
INSTALL 644 transport.tcl
INSTALL 644 win32.tcl
INSTALL 644 git-gui.ico
INSTALL 644 win32_shortcut.js
DEST /home/ek/mygit/share/git-gui/lib/msgs
INSTALL 644 bg.msg
INSTALL 644 de.msg
INSTALL 644 el.msg
INSTALL 644 fr.msg
INSTALL 644 hu.msg
INSTALL 644 it.msg
INSTALL 644 ja.msg
INSTALL 644 nb.msg
INSTALL 644 pt_br.msg
INSTALL 644 pt_pt.msg
INSTALL 644 ru.msg
INSTALL 644 sv.msg
INSTALL 644 vi.msg
INSTALL 644 zh_cn.msg
make[1]: Leaving directory '/home/ek/src/git/git-gui'
bindir=$(cd '/home/ek/mygit/bin' && pwd) && \
execdir=$(cd '/home/ek/mygit/libexec/git-core' && pwd) && \
destdir_from_execdir_SQ=$(echo 'libexec/git-core' | sed -e 's|[^/][^/]*|..|g') && \
{ test "$bindir/" = "$execdir/" || \
for p in git git-shell git-cvsserver; do \
rm -f "$execdir/$p" && \
test -n "" && \
ln -s "$destdir_from_execdir_SQ/bin/$p" "$execdir/$p" || \
{ test -z "" && \
ln "$bindir/$p" "$execdir/$p" 2>/dev/null || \
cp "$bindir/$p" "$execdir/$p" || exit; } \
done; \
} && \
for p in git-receive-pack git-upload-archive git-upload-pack; do \
rm -f "$bindir/$p" && \
test -n "" && \
ln -s "git" "$bindir/$p" || \
{ test -z "" && \
ln "$bindir/git" "$bindir/$p" 2>/dev/null || \
ln -s "git" "$bindir/$p" 2>/dev/null || \
cp "$bindir/git" "$bindir/$p" || exit; }; \
done && \
for p in git-add git-am git-annotate git-apply git-archive git-bisect--helper git-blame git-branch git-bugreport git-bundle git-cat-file git-check-attr git-check-ignore git-check-mailmap git-check-ref-format git-checkout--worker git-checkout-index git-checkout git-clean git-clone git-column git-commit-graph git-commit-tree git-commit git-config git-count-objects git-credential-cache--daemon git-credential-cache git-credential-store git-credential git-describe git-diff-files git-diff-index git-diff-tree git-diff git-difftool git-env--helper git-fast-export git-fast-import git-fetch-pack git-fetch git-fmt-merge-msg git-for-each-ref git-for-each-repo git-fsck git-fsmonitor--daemon git-gc git-get-tar-commit-id git-grep git-hash-object git-help git-hook git-index-pack git-init-db git-interpret-trailers git-log git-ls-files git-ls-remote git-ls-tree git-mailinfo git-mailsplit git-merge-base git-merge-file git-merge-index git-merge-ours git-merge-recursive git-merge-tree git-merge git-mktag git-mktree git-multi-pack-index git-mv git-name-rev git-notes git-pack-objects git-pack-redundant git-pack-refs git-patch-id git-prune-packed git-prune git-pull git-push git-range-diff git-read-tree git-rebase git-receive-pack git-reflog git-remote-ext git-remote-fd git-remote git-repack git-replace git-rerere git-reset git-rev-list git-rev-parse git-revert git-rm git-send-pack git-shortlog git-show-branch git-show-index git-show-ref git-sparse-checkout git-stash git-stripspace git-submodule--helper git-symbolic-ref git-tag git-unpack-file git-unpack-objects git-update-index git-update-ref git-update-server-info git-upload-archive git-upload-pack git-var git-verify-commit git-verify-pack git-verify-tag git-worktree git-write-tree git-cherry git-cherry-pick git-format-patch git-fsck-objects git-init git-maintenance git-merge-subtree git-restore git-show git-stage git-status git-switch git-whatchanged; do \
rm -f "$execdir/$p" && \
if test -z ""; \
then \
test -n "" && \
ln -s "$destdir_from_execdir_SQ/bin/git" "$execdir/$p" || \
{ test -z "" && \
ln "$execdir/git" "$execdir/$p" 2>/dev/null || \
ln -s "git" "$execdir/$p" 2>/dev/null || \
cp "$execdir/git" "$execdir/$p" || exit; }; \
fi \
done && \
remote_curl_aliases="git-remote-https git-remote-ftp git-remote-ftps" && \
for p in $remote_curl_aliases; do \
rm -f "$execdir/$p" && \
test -n "" && \
ln -s "git-remote-http" "$execdir/$p" || \
{ test -z "" && \
ln "$execdir/git-remote-http" "$execdir/$p" 2>/dev/null || \
ln -s "git-remote-http" "$execdir/$p" 2>/dev/null || \
cp "$execdir/git-remote-http" "$execdir/$p" || exit; } \
done
ek@apok:~/src/git ((e7109d5c7c...)|BISECTING)$ pushd ~/tmp
~/tmp ~/src/git
ek@apok:~/tmp$ PATH="$HOME/mygit/bin:$PATH" GIT_SSH_COMMAND='{ pid="$(ps -o ppid:1= -p "$$")"; ps -o pid:1=,cmd= -p "$pid"; awk -v RS=\\0 "/^GIT_CONFIG/ { print \" \" \$0 }" "/proc/$pid/environ"; } 1>&2; ssh' GIT_CONFIG_COUNT=1 GIT_CONFIG_KEY_0=foo.bar GIT_CONFIG_VALUE_0=baz git clone --recurse-submodules git@github.com:EliahKagan/has-nested-submodule.git
Cloning into 'has-nested-submodule'...
1049237 git clone --recurse-submodules git@github.com:EliahKagan/has-nested-submodule.git
GIT_CONFIG_COUNT=1
GIT_CONFIG_KEY_0=foo.bar
GIT_CONFIG_VALUE_0=baz
remote: Enumerating objects: 4, done.
remote: Counting objects: 100% (4/4), done.
remote: Compressing objects: 100% (4/4), done.
remote: Total 4 (delta 0), reused 4 (delta 0), pack-reused 0
Receiving objects: 100% (4/4), done.
Submodule 'has-submodule' (git@github.com:EliahKagan/has-submodule.git) registered for path 'has-submodule'
Cloning into '/home/ek/tmp/has-nested-submodule/has-submodule'...
1049278 /home/ek/mygit/libexec/git-core/git clone --no-checkout --progress --separate-git-dir /home/ek/tmp/has-nested-submodule/.git/modules/has-submodule --no-single-branch -- git@github.com:EliahKagan/has-submodule.git /home/ek/tmp/has-nested-submodule/has-submodule
GIT_CONFIG_COUNT=1
GIT_CONFIG_KEY_0=foo.bar
GIT_CONFIG_VALUE_0=baz
remote: Enumerating objects: 4, done.
remote: Counting objects: 100% (4/4), done.
remote: Compressing objects: 100% (4/4), done.
remote: Total 4 (delta 0), reused 4 (delta 0), pack-reused 0
Receiving objects: 100% (4/4), done.
Submodule path 'has-submodule': checked out '8de4a40d782ddfd338f2ada312714d60541c6f80'
Submodule 'trivial' (git@github.com:EliahKagan/trivial.git) registered for path 'has-submodule/trivial'
Cloning into '/home/ek/tmp/has-nested-submodule/has-submodule/trivial'...
1049297 /home/ek/mygit/libexec/git-core/git clone --no-checkout --progress --separate-git-dir /home/ek/tmp/has-nested-submodule/.git/modules/has-submodule/modules/trivial --no-single-branch -- git@github.com:EliahKagan/trivial.git /home/ek/tmp/has-nested-submodule/has-submodule/trivial
GIT_CONFIG_COUNT=1
GIT_CONFIG_KEY_0=foo.bar
GIT_CONFIG_VALUE_0=baz
remote: Enumerating objects: 3, done.
remote: Counting objects: 100% (3/3), done.
remote: Compressing objects: 100% (2/2), done.
remote: Total 3 (delta 0), reused 3 (delta 0), pack-reused 0
Receiving objects: 100% (3/3), done.
Submodule path 'has-submodule/trivial': checked out '656a18dc1e48e035a05a72011a62bca5f41fa07e'
ek@apok:~/tmp$ rm -rf has-nested-submodule/
ek@apok:~/tmp$ popd
~/src/git
ek@apok:~/src/git ((e7109d5c7c...)|BISECTING)$ rm -r ~/mygit
ek@apok:~/src/git ((e7109d5c7c...)|BISECTING)$ gix clean -xde
removing .depend/ (🗑️)
removing GIT-BUILD-OPTIONS (🗑️)
removing GIT-CFLAGS (🗑️)
removing GIT-LDFLAGS (🗑️)
removing GIT-PERL-DEFINES (🗑️)
removing GIT-PERL-HEADER (🗑️)
removing GIT-PREFIX (🗑️)
removing GIT-PYTHON-VARS (🗑️)
removing GIT-SCRIPT-DEFINES (🗑️)
removing GIT-USER-AGENT (🗑️)
removing GIT-VERSION-FILE (🗑️)
removing abspath.o (🗑️)
removing add-interactive.o (🗑️)
removing add-patch.o (🗑️)
removing advice.o (🗑️)
removing alias.o (🗑️)
removing alloc.o (🗑️)
removing apply.o (🗑️)
removing archive-tar.o (🗑️)
removing archive-zip.o (🗑️)
removing archive.o (🗑️)
removing attr.o (🗑️)
removing base85.o (🗑️)
removing bin-wrappers/ (🗑️)
removing bisect.o (🗑️)
removing blame.o (🗑️)
removing blob.o (🗑️)
removing bloom.o (🗑️)
removing branch.o (🗑️)
removing builtin/.depend/ (🗑️)
removing builtin/add.o (🗑️)
removing builtin/am.o (🗑️)
removing builtin/annotate.o (🗑️)
removing builtin/apply.o (🗑️)
removing builtin/archive.o (🗑️)
removing builtin/bisect--helper.o (🗑️)
removing builtin/blame.o (🗑️)
removing builtin/branch.o (🗑️)
removing builtin/bugreport.o (🗑️)
removing builtin/bundle.o (🗑️)
removing builtin/cat-file.o (🗑️)
removing builtin/check-attr.o (🗑️)
removing builtin/check-ignore.o (🗑️)
removing builtin/check-mailmap.o (🗑️)
removing builtin/check-ref-format.o (🗑️)
removing builtin/checkout--worker.o (🗑️)
removing builtin/checkout-index.o (🗑️)
removing builtin/checkout.o (🗑️)
removing builtin/clean.o (🗑️)
removing builtin/clone.o (🗑️)
removing builtin/column.o (🗑️)
removing builtin/commit-graph.o (🗑️)
removing builtin/commit-tree.o (🗑️)
removing builtin/commit.o (🗑️)
removing builtin/config.o (🗑️)
removing builtin/count-objects.o (🗑️)
removing builtin/credential-cache--daemon.o (🗑️)
removing builtin/credential-cache.o (🗑️)
removing builtin/credential-store.o (🗑️)
removing builtin/credential.o (🗑️)
removing builtin/describe.o (🗑️)
removing builtin/diff-files.o (🗑️)
removing builtin/diff-index.o (🗑️)
removing builtin/diff-tree.o (🗑️)
removing builtin/diff.o (🗑️)
removing builtin/difftool.o (🗑️)
removing builtin/env--helper.o (🗑️)
removing builtin/fast-export.o (🗑️)
removing builtin/fast-import.o (🗑️)
removing builtin/fetch-pack.o (🗑️)
removing builtin/fetch.o (🗑️)
removing builtin/fmt-merge-msg.o (🗑️)
removing builtin/for-each-ref.o (🗑️)
removing builtin/for-each-repo.o (🗑️)
removing builtin/fsck.o (🗑️)
removing builtin/fsmonitor--daemon.o (🗑️)
removing builtin/gc.o (🗑️)
removing builtin/get-tar-commit-id.o (🗑️)
removing builtin/grep.o (🗑️)
removing builtin/hash-object.o (🗑️)
removing builtin/help.o (🗑️)
removing builtin/hook.o (🗑️)
removing builtin/index-pack.o (🗑️)
removing builtin/init-db.o (🗑️)
removing builtin/interpret-trailers.o (🗑️)
removing builtin/log.o (🗑️)
removing builtin/ls-files.o (🗑️)
removing builtin/ls-remote.o (🗑️)
removing builtin/ls-tree.o (🗑️)
removing builtin/mailinfo.o (🗑️)
removing builtin/mailsplit.o (🗑️)
removing builtin/merge-base.o (🗑️)
removing builtin/merge-file.o (🗑️)
removing builtin/merge-index.o (🗑️)
removing builtin/merge-ours.o (🗑️)
removing builtin/merge-recursive.o (🗑️)
removing builtin/merge-tree.o (🗑️)
removing builtin/merge.o (🗑️)
removing builtin/mktag.o (🗑️)
removing builtin/mktree.o (🗑️)
removing builtin/multi-pack-index.o (🗑️)
removing builtin/mv.o (🗑️)
removing builtin/name-rev.o (🗑️)
removing builtin/notes.o (🗑️)
removing builtin/pack-objects.o (🗑️)
removing builtin/pack-redundant.o (🗑️)
removing builtin/pack-refs.o (🗑️)
removing builtin/patch-id.o (🗑️)
removing builtin/prune-packed.o (🗑️)
removing builtin/prune.o (🗑️)
removing builtin/pull.o (🗑️)
removing builtin/push.o (🗑️)
removing builtin/range-diff.o (🗑️)
removing builtin/read-tree.o (🗑️)
removing builtin/rebase.o (🗑️)
removing builtin/receive-pack.o (🗑️)
removing builtin/reflog.o (🗑️)
removing builtin/remote-ext.o (🗑️)
removing builtin/remote-fd.o (🗑️)
removing builtin/remote.o (🗑️)
removing builtin/repack.o (🗑️)
removing builtin/replace.o (🗑️)
removing builtin/rerere.o (🗑️)
removing builtin/reset.o (🗑️)
removing builtin/rev-list.o (🗑️)
removing builtin/rev-parse.o (🗑️)
removing builtin/revert.o (🗑️)
removing builtin/rm.o (🗑️)
removing builtin/send-pack.o (🗑️)
removing builtin/shortlog.o (🗑️)
removing builtin/show-branch.o (🗑️)
removing builtin/show-index.o (🗑️)
removing builtin/show-ref.o (🗑️)
removing builtin/sparse-checkout.o (🗑️)
removing builtin/stash.o (🗑️)
removing builtin/stripspace.o (🗑️)
removing builtin/submodule--helper.o (🗑️)
removing builtin/symbolic-ref.o (🗑️)
removing builtin/tag.o (🗑️)
removing builtin/unpack-file.o (🗑️)
removing builtin/unpack-objects.o (🗑️)
removing builtin/update-index.o (🗑️)
removing builtin/update-ref.o (🗑️)
removing builtin/update-server-info.o (🗑️)
removing builtin/upload-archive.o (🗑️)
removing builtin/upload-pack.o (🗑️)
removing builtin/var.o (🗑️)
removing builtin/verify-commit.o (🗑️)
removing builtin/verify-pack.o (🗑️)
removing builtin/verify-tag.o (🗑️)
removing builtin/worktree.o (🗑️)
removing builtin/write-tree.o (🗑️)
removing bulk-checkin.o (🗑️)
removing bundle.o (🗑️)
removing cache-tree.o (🗑️)
removing cbtree.o (🗑️)
removing chdir-notify.o (🗑️)
removing checkout.o (🗑️)
removing chunk-format.o (🗑️)
removing color.o (🗑️)
removing column.o (🗑️)
removing combine-diff.o (🗑️)
removing command-list.h (🗑️)
removing commit-graph.o (🗑️)
removing commit-reach.o (🗑️)
removing commit.o (🗑️)
removing common-main.o (🗑️)
removing compat/.depend/ (🗑️)
removing compat/fopen.o (🗑️)
removing compat/linux/.depend/ (🗑️)
removing compat/linux/procinfo.o (🗑️)
removing compat/obstack.o (🗑️)
removing compat/qsort_s.o (🗑️)
removing compat/simple-ipc/.depend/ (🗑️)
removing compat/simple-ipc/ipc-shared.o (🗑️)
removing compat/simple-ipc/ipc-unix-socket.o (🗑️)
removing compat/strlcpy.o (🗑️)
removing compat/terminal.o (🗑️)
removing compat/zlib-uncompress2.o (🗑️)
removing config-list.h (🗑️)
removing config.o (🗑️)
removing connect.o (🗑️)
removing connected.o (🗑️)
removing contrib/scalar/.depend/ (🗑️)
removing convert.o (🗑️)
removing copy.o (🗑️)
removing credential.o (🗑️)
removing csum-file.o (🗑️)
removing ctype.o (🗑️)
removing daemon.o (🗑️)
removing date.o (🗑️)
removing decorate.o (🗑️)
removing delta-islands.o (🗑️)
removing diff-delta.o (🗑️)
removing diff-lib.o (🗑️)
removing diff-merges.o (🗑️)
removing diff-no-index.o (🗑️)
removing diff.o (🗑️)
removing diffcore-break.o (🗑️)
removing diffcore-delta.o (🗑️)
removing diffcore-order.o (🗑️)
removing diffcore-pickaxe.o (🗑️)
removing diffcore-rename.o (🗑️)
removing diffcore-rotate.o (🗑️)
removing dir-iterator.o (🗑️)
removing dir.o (🗑️)
removing editor.o (🗑️)
removing entry.o (🗑️)
removing environment.o (🗑️)
removing ewah/.depend/ (🗑️)
removing ewah/bitmap.o (🗑️)
removing ewah/ewah_bitmap.o (🗑️)
removing ewah/ewah_io.o (🗑️)
removing ewah/ewah_rlw.o (🗑️)
removing exec-cmd.o (🗑️)
removing fetch-negotiator.o (🗑️)
removing fetch-pack.o (🗑️)
removing fmt-merge-msg.o (🗑️)
removing fsck.o (🗑️)
removing fsmonitor-ipc.o (🗑️)
removing fsmonitor-settings.o (🗑️)
removing fsmonitor.o (🗑️)
removing fuzz-commit-graph.o (🗑️)
removing fuzz-pack-headers.o (🗑️)
removing fuzz-pack-idx.o (🗑️)
removing gettext.o (🗑️)
removing git (🗑️)
removing git-add (🗑️)
removing git-add--interactive (🗑️)
removing git-am (🗑️)
removing git-annotate (🗑️)
removing git-apply (🗑️)
removing git-archimport (🗑️)
removing git-archive (🗑️)
removing git-bisect (🗑️)
removing git-bisect--helper (🗑️)
removing git-blame (🗑️)
removing git-branch (🗑️)
removing git-bugreport (🗑️)
removing git-bundle (🗑️)
removing git-cat-file (🗑️)
removing git-check-attr (🗑️)
removing git-check-ignore (🗑️)
removing git-check-mailmap (🗑️)
removing git-check-ref-format (🗑️)
removing git-checkout (🗑️)
removing git-checkout--worker (🗑️)
removing git-checkout-index (🗑️)
removing git-cherry (🗑️)
removing git-cherry-pick (🗑️)
removing git-clean (🗑️)
removing git-clone (🗑️)
removing git-column (🗑️)
removing git-commit (🗑️)
removing git-commit-graph (🗑️)
removing git-commit-tree (🗑️)
removing git-config (🗑️)
removing git-count-objects (🗑️)
removing git-credential (🗑️)
removing git-credential-cache (🗑️)
removing git-credential-cache--daemon (🗑️)
removing git-credential-store (🗑️)
removing git-cvsexportcommit (🗑️)
removing git-cvsimport (🗑️)
removing git-cvsserver (🗑️)
removing git-daemon (🗑️)
removing git-describe (🗑️)
removing git-diff (🗑️)
removing git-diff-files (🗑️)
removing git-diff-index (🗑️)
removing git-diff-tree (🗑️)
removing git-difftool (🗑️)
removing git-difftool--helper (🗑️)
removing git-env--helper (🗑️)
removing git-fast-export (🗑️)
removing git-fast-import (🗑️)
removing git-fetch (🗑️)
removing git-fetch-pack (🗑️)
removing git-filter-branch (🗑️)
removing git-fmt-merge-msg (🗑️)
removing git-for-each-ref (🗑️)
removing git-for-each-repo (🗑️)
removing git-format-patch (🗑️)
removing git-fsck (🗑️)
removing git-fsck-objects (🗑️)
removing git-fsmonitor--daemon (🗑️)
removing git-gc (🗑️)
removing git-get-tar-commit-id (🗑️)
removing git-grep (🗑️)
removing git-gui/GIT-GUI-VARS (🗑️)
removing git-gui/GIT-VERSION-FILE (🗑️)
removing git-gui/git-gui (🗑️)
removing git-gui/lib/tclIndex (🗑️)
removing git-gui/po/bg.msg (🗑️)
removing git-gui/po/de.msg (🗑️)
removing git-gui/po/el.msg (🗑️)
removing git-gui/po/fr.msg (🗑️)
removing git-gui/po/hu.msg (🗑️)
removing git-gui/po/it.msg (🗑️)
removing git-gui/po/ja.msg (🗑️)
removing git-gui/po/nb.msg (🗑️)
removing git-gui/po/pt_br.msg (🗑️)
removing git-gui/po/pt_pt.msg (🗑️)
removing git-gui/po/ru.msg (🗑️)
removing git-gui/po/sv.msg (🗑️)
removing git-gui/po/vi.msg (🗑️)
removing git-gui/po/zh_cn.msg (🗑️)
removing git-hash-object (🗑️)
removing git-help (🗑️)
removing git-hook (🗑️)
removing git-http-backend (🗑️)
removing git-http-fetch (🗑️)
removing git-http-push (🗑️)
removing git-imap-send (🗑️)
removing git-index-pack (🗑️)
removing git-init (🗑️)
removing git-init-db (🗑️)
removing git-instaweb (🗑️)
removing git-interpret-trailers (🗑️)
removing git-log (🗑️)
removing git-ls-files (🗑️)
removing git-ls-remote (🗑️)
removing git-ls-tree (🗑️)
removing git-mailinfo (🗑️)
removing git-mailsplit (🗑️)
removing git-maintenance (🗑️)
removing git-merge (🗑️)
removing git-merge-base (🗑️)
removing git-merge-file (🗑️)
removing git-merge-index (🗑️)
removing git-merge-octopus (🗑️)
removing git-merge-one-file (🗑️)
removing git-merge-ours (🗑️)
removing git-merge-recursive (🗑️)
removing git-merge-resolve (🗑️)
removing git-merge-subtree (🗑️)
removing git-merge-tree (🗑️)
removing git-mergetool (🗑️)
removing git-mergetool--lib (🗑️)
removing git-mktag (🗑️)
removing git-mktree (🗑️)
removing git-multi-pack-index (🗑️)
removing git-mv (🗑️)
removing git-name-rev (🗑️)
removing git-notes (🗑️)
removing git-p4 (🗑️)
removing git-pack-objects (🗑️)
removing git-pack-redundant (🗑️)
removing git-pack-refs (🗑️)
removing git-patch-id (🗑️)
removing git-prune (🗑️)
removing git-prune-packed (🗑️)
removing git-pull (🗑️)
removing git-push (🗑️)
removing git-quiltimport (🗑️)
removing git-range-diff (🗑️)
removing git-read-tree (🗑️)
removing git-rebase (🗑️)
removing git-receive-pack (🗑️)
removing git-reflog (🗑️)
removing git-remote (🗑️)
removing git-remote-ext (🗑️)
removing git-remote-fd (🗑️)
removing git-remote-ftp (🗑️)
removing git-remote-ftps (🗑️)
removing git-remote-http (🗑️)
removing git-remote-https (🗑️)
removing git-repack (🗑️)
removing git-replace (🗑️)
removing git-request-pull (🗑️)
removing git-rerere (🗑️)
removing git-reset (🗑️)
removing git-restore (🗑️)
removing git-rev-list (🗑️)
removing git-rev-parse (🗑️)
removing git-revert (🗑️)
removing git-rm (🗑️)
removing git-send-email (🗑️)
removing git-send-pack (🗑️)
removing git-sh-i18n (🗑️)
removing git-sh-i18n--envsubst (🗑️)
removing git-sh-setup (🗑️)
removing git-shell (🗑️)
removing git-shortlog (🗑️)
removing git-show (🗑️)
removing git-show-branch (🗑️)
removing git-show-index (🗑️)
removing git-show-ref (🗑️)
removing git-sparse-checkout (🗑️)
removing git-stage (🗑️)
removing git-stash (🗑️)
removing git-status (🗑️)
removing git-stripspace (🗑️)
removing git-submodule (🗑️)
removing git-submodule--helper (🗑️)
removing git-svn (🗑️)
removing git-switch (🗑️)
removing git-symbolic-ref (🗑️)
removing git-tag (🗑️)
removing git-unpack-file (🗑️)
removing git-unpack-objects (🗑️)
removing git-update-index (🗑️)
removing git-update-ref (🗑️)
removing git-update-server-info (🗑️)
removing git-upload-archive (🗑️)
removing git-upload-pack (🗑️)
removing git-var (🗑️)
removing git-verify-commit (🗑️)
removing git-verify-pack (🗑️)
removing git-verify-tag (🗑️)
removing git-web--browse (🗑️)
removing git-whatchanged (🗑️)
removing git-worktree (🗑️)
removing git-write-tree (🗑️)
removing git.o (🗑️)
removing gitk-git/GIT-TCLTK-VARS (🗑️)
removing gitk-git/gitk-wish (🗑️)
removing gitk-git/po/bg.msg (🗑️)
removing gitk-git/po/ca.msg (🗑️)
removing gitk-git/po/de.msg (🗑️)
removing gitk-git/po/es.msg (🗑️)
removing gitk-git/po/fr.msg (🗑️)
removing gitk-git/po/hu.msg (🗑️)
removing gitk-git/po/it.msg (🗑️)
removing gitk-git/po/ja.msg (🗑️)
removing gitk-git/po/pt_br.msg (🗑️)
removing gitk-git/po/pt_pt.msg (🗑️)
removing gitk-git/po/ru.msg (🗑️)
removing gitk-git/po/sv.msg (🗑️)
removing gitk-git/po/vi.msg (🗑️)
removing gitk-git/po/zh_cn.msg (🗑️)
removing gitweb/GITWEB-BUILD-OPTIONS (🗑️)
removing gitweb/gitweb.cgi (🗑️)
removing gitweb/static/gitweb.js (🗑️)
removing gpg-interface.o (🗑️)
removing graph.o (🗑️)
removing grep.o (🗑️)
removing hash-lookup.o (🗑️)
removing hashmap.o (🗑️)
removing help.o (🗑️)
removing hex.o (🗑️)
removing hook-list.h (🗑️)
removing hook.o (🗑️)
removing http-backend.o (🗑️)
removing http-fetch.o (🗑️)
removing http-push.o (🗑️)
removing http-walker.o (🗑️)
removing http.o (🗑️)
removing ident.o (🗑️)
removing imap-send.o (🗑️)
removing json-writer.o (🗑️)
removing kwset.o (🗑️)
removing levenshtein.o (🗑️)
removing libgit.a (🗑️)
removing line-log.o (🗑️)
removing line-range.o (🗑️)
removing linear-assignment.o (🗑️)
removing list-objects-filter-options.o (🗑️)
removing list-objects-filter.o (🗑️)
removing list-objects.o (🗑️)
removing ll-merge.o (🗑️)
removing lockfile.o (🗑️)
removing log-tree.o (🗑️)
removing ls-refs.o (🗑️)
removing mailinfo.o (🗑️)
removing mailmap.o (🗑️)
removing match-trees.o (🗑️)
removing mem-pool.o (🗑️)
removing merge-blobs.o (🗑️)
removing merge-ort-wrappers.o (🗑️)
removing merge-ort.o (🗑️)
removing merge-recursive.o (🗑️)
removing merge.o (🗑️)
removing mergesort.o (🗑️)
removing midx.o (🗑️)
removing name-hash.o (🗑️)
removing negotiator/.depend/ (🗑️)
removing negotiator/default.o (🗑️)
removing negotiator/noop.o (🗑️)
removing negotiator/skipping.o (🗑️)
removing notes-cache.o (🗑️)
removing notes-merge.o (🗑️)
removing notes-utils.o (🗑️)
removing notes.o (🗑️)
removing object-file.o (🗑️)
removing object-name.o (🗑️)
removing object.o (🗑️)
removing oid-array.o (🗑️)
removing oidmap.o (🗑️)
removing oidset.o (🗑️)
removing oidtree.o (🗑️)
removing pack-bitmap-write.o (🗑️)
removing pack-bitmap.o (🗑️)
removing pack-check.o (🗑️)
removing pack-objects.o (🗑️)
removing pack-revindex.o (🗑️)
removing pack-write.o (🗑️)
removing packfile.o (🗑️)
removing pager.o (🗑️)
removing parallel-checkout.o (🗑️)
removing parse-options-cb.o (🗑️)
removing parse-options.o (🗑️)
removing patch-delta.o (🗑️)
removing patch-ids.o (🗑️)
removing path.o (🗑️)
removing pathspec.o (🗑️)
removing perl/build/ (🗑️)
removing pkt-line.o (🗑️)
removing po/build/ (🗑️)
removing preload-index.o (🗑️)
removing pretty.o (🗑️)
removing prio-queue.o (🗑️)
removing progress.o (🗑️)
removing promisor-remote.o (🗑️)
removing prompt.o (🗑️)
removing protocol-caps.o (🗑️)
removing protocol.o (🗑️)
removing prune-packed.o (🗑️)
removing quote.o (🗑️)
removing range-diff.o (🗑️)
removing reachable.o (🗑️)
removing read-cache.o (🗑️)
removing rebase-interactive.o (🗑️)
removing rebase.o (🗑️)
removing ref-filter.o (🗑️)
removing reflog-walk.o (🗑️)
removing reflog.o (🗑️)
removing refs.o (🗑️)
removing refs/.depend/ (🗑️)
removing refs/debug.o (🗑️)
removing refs/files-backend.o (🗑️)
removing refs/iterator.o (🗑️)
removing refs/packed-backend.o (🗑️)
removing refs/ref-cache.o (🗑️)
removing refspec.o (🗑️)
removing reftable/.depend/ (🗑️)
removing reftable/basics.o (🗑️)
removing reftable/basics_test.o (🗑️)
removing reftable/block.o (🗑️)
removing reftable/block_test.o (🗑️)
removing reftable/blocksource.o (🗑️)
removing reftable/dump.o (🗑️)
removing reftable/error.o (🗑️)
removing reftable/generic.o (🗑️)
removing reftable/iter.o (🗑️)
removing reftable/libreftable.a (🗑️)
removing reftable/libreftable_test.a (🗑️)
removing reftable/merged.o (🗑️)
removing reftable/merged_test.o (🗑️)
removing reftable/pq.o (🗑️)
removing reftable/pq_test.o (🗑️)
removing reftable/publicbasics.o (🗑️)
removing reftable/reader.o (🗑️)
removing reftable/readwrite_test.o (🗑️)
removing reftable/record.o (🗑️)
removing reftable/record_test.o (🗑️)
removing reftable/refname.o (🗑️)
removing reftable/refname_test.o (🗑️)
removing reftable/stack.o (🗑️)
removing reftable/stack_test.o (🗑️)
removing reftable/test_framework.o (🗑️)
removing reftable/tree.o (🗑️)
removing reftable/tree_test.o (🗑️)
removing reftable/writer.o (🗑️)
removing remote-curl.o (🗑️)
removing remote.o (🗑️)
removing replace-object.o (🗑️)
removing repo-settings.o (🗑️)
removing repository.o (🗑️)
removing rerere.o (🗑️)
removing reset.o (🗑️)
removing resolve-undo.o (🗑️)
removing revision.o (🗑️)
removing run-command.o (🗑️)
removing send-pack.o (🗑️)
removing sequencer.o (🗑️)
removing serve.o (🗑️)
removing server-info.o (🗑️)
removing setup.o (🗑️)
removing sh-i18n--envsubst.o (🗑️)
removing sha1dc/.depend/ (🗑️)
removing sha1dc/sha1.o (🗑️)
removing sha1dc/ubc_check.o (🗑️)
removing sha1dc_git.o (🗑️)
removing sha256/block/.depend/ (🗑️)
removing sha256/block/sha256.o (🗑️)
removing shallow.o (🗑️)
removing shell.o (🗑️)
removing sideband.o (🗑️)
removing sigchain.o (🗑️)
removing sparse-index.o (🗑️)
removing split-index.o (🗑️)
removing stable-qsort.o (🗑️)
removing strbuf.o (🗑️)
removing streaming.o (🗑️)
removing string-list.o (🗑️)
removing strmap.o (🗑️)
removing strvec.o (🗑️)
removing sub-process.o (🗑️)
removing submodule-config.o (🗑️)
removing submodule.o (🗑️)
removing symlinks.o (🗑️)
removing t/helper/.depend/ (🗑️)
removing t/helper/test-advise.o (🗑️)
removing t/helper/test-bitmap.o (🗑️)
removing t/helper/test-bloom.o (🗑️)
removing t/helper/test-chmtime.o (🗑️)
removing t/helper/test-config.o (🗑️)
removing t/helper/test-crontab.o (🗑️)
removing t/helper/test-csprng.o (🗑️)
removing t/helper/test-ctype.o (🗑️)
removing t/helper/test-date.o (🗑️)
removing t/helper/test-delta.o (🗑️)
removing t/helper/test-dir-iterator.o (🗑️)
removing t/helper/test-drop-caches.o (🗑️)
removing t/helper/test-dump-cache-tree.o (🗑️)
removing t/helper/test-dump-fsmonitor.o (🗑️)
removing t/helper/test-dump-split-index.o (🗑️)
removing t/helper/test-dump-untracked-cache.o (🗑️)
removing t/helper/test-example-decorate.o (🗑️)
removing t/helper/test-fake-ssh (🗑️)
removing t/helper/test-fake-ssh.o (🗑️)
removing t/helper/test-fast-rebase.o (🗑️)
removing t/helper/test-fsmonitor-client.o (🗑️)
removing t/helper/test-genrandom.o (🗑️)
removing t/helper/test-genzeros.o (🗑️)
removing t/helper/test-getcwd.o (🗑️)
removing t/helper/test-hash-speed.o (🗑️)
removing t/helper/test-hash.o (🗑️)
removing t/helper/test-hashmap.o (🗑️)
removing t/helper/test-index-version.o (🗑️)
removing t/helper/test-json-writer.o (🗑️)
removing t/helper/test-lazy-init-name-hash.o (🗑️)
removing t/helper/test-match-trees.o (🗑️)
removing t/helper/test-mergesort.o (🗑️)
removing t/helper/test-mktemp.o (🗑️)
removing t/helper/test-oid-array.o (🗑️)
removing t/helper/test-oidmap.o (🗑️)
removing t/helper/test-oidtree.o (🗑️)
removing t/helper/test-online-cpus.o (🗑️)
removing t/helper/test-parse-options.o (🗑️)
removing t/helper/test-parse-pathspec-file.o (🗑️)
removing t/helper/test-partial-clone.o (🗑️)
removing t/helper/test-path-utils.o (🗑️)
removing t/helper/test-pcre2-config.o (🗑️)
removing t/helper/test-pkt-line.o (🗑️)
removing t/helper/test-prio-queue.o (🗑️)
removing t/helper/test-proc-receive.o (🗑️)
removing t/helper/test-progress.o (🗑️)
removing t/helper/test-reach.o (🗑️)
removing t/helper/test-read-cache.o (🗑️)
removing t/helper/test-read-graph.o (🗑️)
removing t/helper/test-read-midx.o (🗑️)
removing t/helper/test-ref-store.o (🗑️)
removing t/helper/test-reftable.o (🗑️)
removing t/helper/test-regex.o (🗑️)
removing t/helper/test-repository.o (🗑️)
removing t/helper/test-revision-walking.o (🗑️)
removing t/helper/test-run-command.o (🗑️)
removing t/helper/test-scrap-cache-tree.o (🗑️)
removing t/helper/test-serve-v2.o (🗑️)
removing t/helper/test-sha1.o (🗑️)
removing t/helper/test-sha256.o (🗑️)
removing t/helper/test-sigchain.o (🗑️)
removing t/helper/test-simple-ipc.o (🗑️)
removing t/helper/test-strcmp-offset.o (🗑️)
removing t/helper/test-string-list.o (🗑️)
removing t/helper/test-submodule-config.o (🗑️)
removing t/helper/test-submodule-nested-repo-config.o (🗑️)
removing t/helper/test-subprocess.o (🗑️)
removing t/helper/test-tool (🗑️)
removing t/helper/test-tool.o (🗑️)
removing t/helper/test-trace2.o (🗑️)
removing t/helper/test-urlmatch-normalization.o (🗑️)
removing t/helper/test-userdiff.o (🗑️)
removing t/helper/test-wildmatch.o (🗑️)
removing t/helper/test-windows-named-pipe.o (🗑️)
removing t/helper/test-write-cache.o (🗑️)
removing t/helper/test-xml-encode.o (🗑️)
removing tag.o (🗑️)
removing tempfile.o (🗑️)
removing templates/blt/ (🗑️)
removing templates/boilerplates.made (🗑️)
removing thread-utils.o (🗑️)
removing tmp-objdir.o (🗑️)
removing trace.o (🗑️)
removing trace2.o (🗑️)
removing trace2/.depend/ (🗑️)
removing trace2/tr2_cfg.o (🗑️)
removing trace2/tr2_cmd_name.o (🗑️)
removing trace2/tr2_dst.o (🗑️)
removing trace2/tr2_sid.o (🗑️)
removing trace2/tr2_sysenv.o (🗑️)
removing trace2/tr2_tbuf.o (🗑️)
removing trace2/tr2_tgt_event.o (🗑️)
removing trace2/tr2_tgt_normal.o (🗑️)
removing trace2/tr2_tgt_perf.o (🗑️)
removing trace2/tr2_tls.o (🗑️)
removing trailer.o (🗑️)
removing transport-helper.o (🗑️)
removing transport.o (🗑️)
removing tree-diff.o (🗑️)
removing tree-walk.o (🗑️)
removing tree.o (🗑️)
removing unix-socket.o (🗑️)
removing unix-stream-server.o (🗑️)
removing unpack-trees.o (🗑️)
removing upload-pack.o (🗑️)
removing url.o (🗑️)
removing urlmatch.o (🗑️)
removing usage.o (🗑️)
removing userdiff.o (🗑️)
removing utf8.o (🗑️)
removing varint.o (🗑️)
removing version.o (🗑️)
removing versioncmp.o (🗑️)
removing walker.o (🗑️)
removing wildmatch.o (🗑️)
removing worktree.o (🗑️)
removing wrapper.o (🗑️)
removing write-or-die.o (🗑️)
removing ws.o (🗑️)
removing wt-status.o (🗑️)
removing xdiff-interface.o (🗑️)
removing xdiff/.depend/ (🗑️)
removing xdiff/lib.a (🗑️)
removing xdiff/xdiffi.o (🗑️)
removing xdiff/xemit.o (🗑️)
removing xdiff/xhistogram.o (🗑️)
removing xdiff/xmerge.o (🗑️)
removing xdiff/xpatience.o (🗑️)
removing xdiff/xprepare.o (🗑️)
removing xdiff/xutils.o (🗑️)
removing zlib.o (🗑️)
ek@apok:~/src/git ((e7109d5c7c...)|BISECTING)$ git bisect new
Bisecting: 256 revisions left to test after this (roughly 8 steps)
[5cb28270a1ff94a0a23e67b479bbbec3bc993518] pack-objects: lazily set up "struct rev_info", don't leak
ek@apok:~/src/git ((5cb28270a1...)|BISECTING)$ make prefix="$HOME/mygit" -j5
GIT_VERSION = 2.35.1.613.g5cb28270a1
* new build flags
CC fuzz-commit-graph.o
CC fuzz-pack-headers.o
CC fuzz-pack-idx.o
CC daemon.o
CC abspath.o
* new link flags
CC common-main.o
CC add-interactive.o
CC add-patch.o
CC advice.o
CC alias.o
CC alloc.o
CC apply.o
CC archive-tar.o
CC archive-zip.o
CC archive.o
* new prefix flags
CC base85.o
CC bisect.o
CC blame.o
CC blob.o
CC bloom.o
CC branch.o
CC bulk-checkin.o
CC bundle.o
CC cache-tree.o
CC cbtree.o
CC chdir-notify.o
CC checkout.o
CC chunk-format.o
CC color.o
CC column.o
CC combine-diff.o
CC commit-graph.o
CC commit-reach.o
CC commit.o
CC compat/obstack.o
CC compat/terminal.o
CC compat/zlib-uncompress2.o
CC config.o
CC connect.o
CC connected.o
CC convert.o
CC copy.o
CC credential.o
CC csum-file.o
CC ctype.o
CC date.o
CC decorate.o
CC delta-islands.o
CC diff-delta.o
CC diff-merges.o
CC diff-lib.o
CC diff-no-index.o
CC diff.o
CC diffcore-break.o
CC diffcore-delta.o
CC diffcore-order.o
CC diffcore-pickaxe.o
CC diffcore-rename.o
CC diffcore-rotate.o
CC dir-iterator.o
CC dir.o
CC editor.o
CC entry.o
CC environment.o
CC ewah/bitmap.o
CC ewah/ewah_bitmap.o
CC ewah/ewah_io.o
CC ewah/ewah_rlw.o
CC exec-cmd.o
CC fetch-negotiator.o
CC fetch-pack.o
CC fmt-merge-msg.o
CC fsck.o
CC fsmonitor.o
CC gettext.o
CC gpg-interface.o
CC graph.o
CC grep.o
CC hash-lookup.o
CC hashmap.o
GEN command-list.h
CC hex.o
CC hook.o
CC ident.o
CC json-writer.o
CC kwset.o
CC levenshtein.o
CC line-log.o
CC line-range.o
CC linear-assignment.o
CC list-objects-filter-options.o
CC list-objects-filter.o
CC list-objects.o
CC ll-merge.o
CC lockfile.o
CC log-tree.o
CC ls-refs.o
CC mailinfo.o
CC mailmap.o
CC match-trees.o
CC mem-pool.o
CC merge-blobs.o
CC merge-ort.o
CC merge-ort-wrappers.o
CC merge-recursive.o
CC merge.o
CC mergesort.o
CC midx.o
CC name-hash.o
CC negotiator/default.o
CC negotiator/noop.o
CC negotiator/skipping.o
CC notes-cache.o
CC notes-merge.o
CC notes-utils.o
CC notes.o
CC object-file.o
CC object-name.o
CC object.o
CC oid-array.o
CC oidmap.o
CC oidset.o
CC oidtree.o
CC pack-bitmap-write.o
CC pack-bitmap.o
CC pack-check.o
CC pack-objects.o
CC pack-revindex.o
CC pack-write.o
CC packfile.o
CC pager.o
CC parallel-checkout.o
CC parse-options-cb.o
CC parse-options.o
CC patch-delta.o
CC patch-ids.o
CC path.o
CC pathspec.o
CC pkt-line.o
CC preload-index.o
CC pretty.o
CC prio-queue.o
CC progress.o
CC promisor-remote.o
CC prompt.o
CC protocol.o
CC protocol-caps.o
CC prune-packed.o
CC quote.o
CC range-diff.o
CC reachable.o
CC read-cache.o
CC rebase-interactive.o
CC rebase.o
CC ref-filter.o
CC reflog-walk.o
CC reflog.o
CC refs.o
CC refs/debug.o
CC refs/files-backend.o
CC refs/iterator.o
CC refs/packed-backend.o
CC refs/ref-cache.o
CC refspec.o
CC remote.o
CC replace-object.o
CC repo-settings.o
CC repository.o
CC rerere.o
CC reset.o
CC resolve-undo.o
CC revision.o
CC run-command.o
CC send-pack.o
CC sequencer.o
CC serve.o
CC server-info.o
CC setup.o
CC shallow.o
CC sideband.o
CC sigchain.o
CC sparse-index.o
CC split-index.o
CC stable-qsort.o
CC strbuf.o
CC streaming.o
CC string-list.o
CC strmap.o
CC strvec.o
CC sub-process.o
CC submodule-config.o
CC submodule.o
CC symlinks.o
CC tag.o
CC tempfile.o
CC thread-utils.o
CC tmp-objdir.o
CC trace.o
CC trace2.o
CC trace2/tr2_cfg.o
CC trace2/tr2_cmd_name.o
CC trace2/tr2_dst.o
CC trace2/tr2_sid.o
CC trace2/tr2_sysenv.o
CC trace2/tr2_tbuf.o
CC trace2/tr2_tgt_event.o
CC trace2/tr2_tgt_normal.o
CC trace2/tr2_tgt_perf.o
CC trace2/tr2_tls.o
CC trailer.o
CC transport-helper.o
CC transport.o
CC tree-diff.o
CC tree-walk.o
CC tree.o
CC unpack-trees.o
CC upload-pack.o
CC url.o
CC urlmatch.o
CC usage.o
CC userdiff.o
CC utf8.o
CC varint.o
CC versioncmp.o
CC walker.o
CC wildmatch.o
CC worktree.o
CC wrapper.o
CC write-or-die.o
CC ws.o
CC wt-status.o
CC xdiff-interface.o
CC zlib.o
CC unix-socket.o
CC unix-stream-server.o
CC compat/simple-ipc/ipc-shared.o
CC compat/simple-ipc/ipc-unix-socket.o
CC sha1dc_git.o
CC sha1dc/sha1.o
CC sha1dc/ubc_check.o
CC sha256/block/sha256.o
CC compat/linux/procinfo.o
CC compat/fopen.o
CC compat/strlcpy.o
CC compat/qsort_s.o
CC xdiff/xdiffi.o
CC xdiff/xemit.o
CC xdiff/xhistogram.o
CC xdiff/xmerge.o
CC xdiff/xpatience.o
CC xdiff/xprepare.o
CC xdiff/xutils.o
CC reftable/basics.o
CC reftable/error.o
CC reftable/block.o
CC reftable/blocksource.o
CC reftable/iter.o
CC reftable/publicbasics.o
CC reftable/merged.o
CC reftable/pq.o
CC reftable/reader.o
CC reftable/record.o
CC reftable/refname.o
CC reftable/generic.o
CC reftable/stack.o
CC reftable/tree.o
CC reftable/writer.o
CC http-backend.o
CC imap-send.o
CC http.o
CC sh-i18n--envsubst.o
CC shell.o
CC http-walker.o
CC http-fetch.o
CC http-push.o
CC remote-curl.o
* new script parameters
* new perl-specific parameters
* new Python interpreter location
GEN git-instaweb
CC git.o
CC builtin/add.o
CC builtin/am.o
CC builtin/annotate.o
CC builtin/apply.o
CC builtin/archive.o
CC builtin/bisect--helper.o
CC builtin/blame.o
CC builtin/branch.o
GEN hook-list.h
CC builtin/bundle.o
CC builtin/cat-file.o
CC builtin/check-attr.o
CC builtin/check-ignore.o
CC builtin/check-mailmap.o
CC builtin/check-ref-format.o
CC builtin/checkout--worker.o
CC builtin/checkout-index.o
CC builtin/checkout.o
CC builtin/clean.o
CC builtin/clone.o
CC builtin/column.o
CC builtin/commit-graph.o
CC builtin/commit-tree.o
CC builtin/commit.o
CC builtin/config.o
CC builtin/count-objects.o
CC builtin/credential-cache--daemon.o
CC builtin/credential-cache.o
CC builtin/credential-store.o
CC builtin/credential.o
CC builtin/describe.o
CC builtin/diff-files.o
CC builtin/diff-index.o
CC builtin/diff-tree.o
CC builtin/diff.o
CC builtin/difftool.o
CC builtin/env--helper.o
CC builtin/fast-export.o
CC builtin/fast-import.o
CC builtin/fetch-pack.o
CC builtin/fetch.o
CC builtin/fmt-merge-msg.o
CC builtin/for-each-ref.o
CC builtin/for-each-repo.o
CC builtin/fsck.o
CC builtin/gc.o
CC builtin/get-tar-commit-id.o
CC builtin/grep.o
CC builtin/hash-object.o
GEN config-list.h
CC builtin/hook.o
CC builtin/index-pack.o
CC builtin/init-db.o
CC builtin/interpret-trailers.o
CC builtin/log.o
CC builtin/ls-files.o
CC builtin/ls-remote.o
CC builtin/ls-tree.o
CC builtin/mailinfo.o
CC builtin/mailsplit.o
CC builtin/merge-base.o
CC builtin/merge-file.o
CC builtin/merge-index.o
CC builtin/merge-ours.o
CC builtin/merge-recursive.o
CC builtin/merge-tree.o
CC builtin/merge.o
CC builtin/mktag.o
CC builtin/mktree.o
CC builtin/multi-pack-index.o
CC builtin/mv.o
CC builtin/name-rev.o
CC builtin/notes.o
CC builtin/pack-objects.o
CC builtin/pack-redundant.o
CC builtin/pack-refs.o
CC builtin/patch-id.o
CC builtin/prune-packed.o
CC builtin/prune.o
CC builtin/pull.o
CC builtin/push.o
CC builtin/range-diff.o
CC builtin/read-tree.o
CC builtin/rebase.o
CC builtin/receive-pack.o
CC builtin/reflog.o
CC builtin/remote-ext.o
CC builtin/remote-fd.o
CC builtin/remote.o
CC builtin/repack.o
CC builtin/replace.o
CC builtin/rerere.o
CC builtin/reset.o
CC builtin/rev-list.o
CC builtin/rev-parse.o
CC builtin/revert.o
CC builtin/rm.o
CC builtin/send-pack.o
CC builtin/shortlog.o
CC builtin/show-branch.o
CC builtin/show-index.o
CC builtin/show-ref.o
CC builtin/sparse-checkout.o
CC builtin/stash.o
CC builtin/stripspace.o
CC builtin/submodule--helper.o
CC builtin/symbolic-ref.o
CC builtin/tag.o
CC builtin/unpack-file.o
CC builtin/unpack-objects.o
CC builtin/update-index.o
CC builtin/update-ref.o
CC builtin/update-server-info.o
CC builtin/upload-archive.o
CC builtin/upload-pack.o
CC builtin/var.o
CC builtin/verify-commit.o
CC builtin/verify-pack.o
CC builtin/verify-tag.o
CC builtin/worktree.o
CC builtin/write-tree.o
GEN git-mergetool--lib
GEN git-sh-i18n
GEN git-sh-setup
CC attr.o
CC help.o
CC version.o
AR xdiff/lib.a
AR reftable/libreftable.a
GEN git-bisect
GEN git-difftool--helper
GEN git-filter-branch
GEN git-merge-octopus
GEN git-merge-one-file
GEN git-merge-resolve
GEN git-mergetool
GEN git-quiltimport
GEN git-request-pull
GEN git-submodule
GEN git-web--browse
GEN GIT-PERL-HEADER
GEN git-p4
CC builtin/bugreport.o
CC builtin/help.o
GEN git-add--interactive
GEN git-archimport
GEN git-cvsexportcommit
GEN git-cvsimport
GEN git-cvsserver
GEN git-send-email
GEN git-svn
AR libgit.a
LINK git-daemon
LINK git-http-backend
LINK git-imap-send
LINK git-sh-i18n--envsubst
LINK git-shell
LINK git-http-fetch
LINK git-http-push
LINK git-remote-http
LINK git
LN/CP git-remote-https
LN/CP git-remote-ftp
LN/CP git-remote-ftps
BUILTIN git-add
BUILTIN git-am
BUILTIN git-annotate
BUILTIN git-apply
BUILTIN git-archive
BUILTIN git-bisect--helper
BUILTIN git-blame
BUILTIN git-branch
BUILTIN git-bugreport
BUILTIN git-bundle
BUILTIN git-cat-file
BUILTIN git-check-attr
BUILTIN git-check-ignore
BUILTIN git-check-mailmap
BUILTIN git-check-ref-format
BUILTIN git-checkout--worker
BUILTIN git-checkout-index
BUILTIN git-checkout
BUILTIN git-clean
BUILTIN git-clone
BUILTIN git-column
BUILTIN git-commit-graph
BUILTIN git-commit-tree
BUILTIN git-commit
BUILTIN git-config
BUILTIN git-count-objects
BUILTIN git-credential-cache--daemon
BUILTIN git-credential-cache
BUILTIN git-credential-store
BUILTIN git-credential
BUILTIN git-describe
BUILTIN git-diff-files
BUILTIN git-diff-index
BUILTIN git-diff-tree
BUILTIN git-diff
BUILTIN git-difftool
BUILTIN git-env--helper
BUILTIN git-fast-export
BUILTIN git-fast-import
BUILTIN git-fetch-pack
BUILTIN git-fetch
BUILTIN git-fmt-merge-msg
BUILTIN git-for-each-ref
BUILTIN git-for-each-repo
BUILTIN git-fsck
BUILTIN git-gc
BUILTIN git-get-tar-commit-id
BUILTIN git-grep
BUILTIN git-hash-object
BUILTIN git-help
BUILTIN git-hook
BUILTIN git-index-pack
BUILTIN git-init-db
BUILTIN git-log
BUILTIN git-ls-files
BUILTIN git-interpret-trailers
BUILTIN git-ls-remote
BUILTIN git-ls-tree
BUILTIN git-mailinfo
BUILTIN git-mailsplit
BUILTIN git-merge-file
BUILTIN git-merge-base
BUILTIN git-merge-index
BUILTIN git-merge-ours
BUILTIN git-merge-recursive
BUILTIN git-merge-tree
BUILTIN git-merge
BUILTIN git-mktag
BUILTIN git-mktree
BUILTIN git-multi-pack-index
BUILTIN git-mv
BUILTIN git-name-rev
BUILTIN git-notes
BUILTIN git-pack-objects
BUILTIN git-pack-redundant
BUILTIN git-pack-refs
BUILTIN git-patch-id
BUILTIN git-prune-packed
BUILTIN git-prune
BUILTIN git-pull
BUILTIN git-push
BUILTIN git-range-diff
BUILTIN git-read-tree
BUILTIN git-receive-pack
BUILTIN git-reflog
BUILTIN git-rebase
BUILTIN git-remote-ext
BUILTIN git-remote-fd
BUILTIN git-repack
BUILTIN git-remote
BUILTIN git-replace
BUILTIN git-rerere
BUILTIN git-reset
BUILTIN git-rev-parse
BUILTIN git-rev-list
BUILTIN git-revert
BUILTIN git-rm
BUILTIN git-send-pack
BUILTIN git-shortlog
BUILTIN git-show-branch
BUILTIN git-show-index
BUILTIN git-show-ref
BUILTIN git-stash
BUILTIN git-sparse-checkout
BUILTIN git-stripspace
BUILTIN git-submodule--helper
BUILTIN git-symbolic-ref
BUILTIN git-tag
BUILTIN git-unpack-file
BUILTIN git-unpack-objects
BUILTIN git-update-index
BUILTIN git-update-ref
BUILTIN git-update-server-info
BUILTIN git-upload-archive
BUILTIN git-upload-pack
BUILTIN git-var
BUILTIN git-verify-commit
BUILTIN git-verify-pack
BUILTIN git-verify-tag
BUILTIN git-worktree
BUILTIN git-write-tree
BUILTIN git-cherry
BUILTIN git-cherry-pick
BUILTIN git-format-patch
BUILTIN git-fsck-objects
BUILTIN git-init
BUILTIN git-maintenance
BUILTIN git-merge-subtree
BUILTIN git-restore
BUILTIN git-show
BUILTIN git-stage
BUILTIN git-status
BUILTIN git-switch
BUILTIN git-whatchanged
SUBDIR git-gui
GITGUI_VERSION = 0.21.0.99.gdf4f9
* new locations or Tcl/Tk interpreter
MSGFMT po/bg.msg MSGFMT po/de.msg MSGFMT po/el.msg MSGFMT po/fr.msg MSGFMT po/hu.msg 381 translated, 4 fuzzy, 6 untranslated.
565 translated.
MSGFMT po/it.msg 579 translated.
520 translated.
MSGFMT po/ja.msg MSGFMT po/nb.msg 514 translated.
MSGFMT po/pt_br.msg MSGFMT po/pt_pt.msg 519 translated, 1 untranslated.
MSGFMT po/ru.msg 546 translated, 1 untranslated.
MSGFMT po/sv.msg 550 translated.
MSGFMT po/vi.msg 474 translated, 39 untranslated.
MSGFMT po/zh_cn.msg 520 translated.
GEN git-gui
579 translated.
INDEX lib/
366 translated, 7 fuzzy, 17 untranslated.
547 translated.
543 translated.
SUBDIR gitk-git
Generating catalog po/bg.msg
msgfmt --statistics --tcl po/bg.po -l bg -d po/
* new Tcl/Tk interpreter location
Generating catalog po/ca.msg
Generating catalog po/es.msg
msgfmt --statistics --tcl po/es.po -l es -d po/
Generating catalog po/de.msg
msgfmt --statistics --tcl po/de.po -l de -d po/
msgfmt --statistics --tcl po/ca.po -l ca -d po/
Generating catalog po/fr.msg
msgfmt --statistics --tcl po/fr.po -l fr -d po/
317 translated messages.
184 translated messages, 46 fuzzy translations, 77 untranslated messages.
307 translated messages.
307 translated messages.
Generating catalog po/hu.msg
msgfmt --statistics --tcl po/hu.po -l hu -d po/
Generating catalog po/ja.msg
Generating catalog po/pt_br.msg
msgfmt --statistics --tcl po/ja.po -l ja -d po/
311 translated messages.
Generating catalog po/it.msg
msgfmt --statistics --tcl po/it.po -l it -d po/
msgfmt --statistics --tcl po/pt_br.po -l pt_br -d po/
277 translated messages, 18 fuzzy translations, 12 untranslated messages279 translated messages, 16 fuzzy translations, 12 untranslated messages274 translated messages.
, 17 fuzzy translations, 16 untranslated messages.
.
311 translated messages.
Generating catalog po/pt_pt.msg
Generating catalog po/ru.msg
msgfmt --statistics --tcl po/pt_pt.po -l pt_pt -d po/
msgfmt --statistics --tcl po/ru.po -l ru -d po/
Generating catalog po/sv.msg
msgfmt --statistics --tcl po/sv.po -l sv -d po/
Generating catalog po/vi.msg
msgfmt --statistics --tcl po/vi.po -l vi -d po/
Generating catalog po/zh_cn.msg
msgfmt --statistics --tcl po/zh_cn.po -l zh_cn -d po/
317 translated messages.
311 translated messages.
311 translated messages.
GEN gitk-wish
317 translated messages307 translated messages.
.
SUBDIR templates
MKDIR -p po/build/locale/bg/LC_MESSAGES
MSGFMT po/build/locale/bg/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/ca/LC_MESSAGES
MSGFMT po/build/locale/ca/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/de/LC_MESSAGES
MSGFMT po/build/locale/de/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/el/LC_MESSAGES
MSGFMT po/build/locale/el/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/es/LC_MESSAGES
MSGFMT po/build/locale/es/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/fr/LC_MESSAGES
MSGFMT po/build/locale/fr/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/id/LC_MESSAGES
MSGFMT po/build/locale/id/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/is/LC_MESSAGES
MSGFMT po/build/locale/is/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/it/LC_MESSAGES
MSGFMT po/build/locale/it/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/ko/LC_MESSAGES
MSGFMT po/build/locale/ko/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/pl/LC_MESSAGES
MSGFMT po/build/locale/pl/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/pt_PT/LC_MESSAGES
MSGFMT po/build/locale/pt_PT/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/ru/LC_MESSAGES
MSGFMT po/build/locale/ru/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/sv/LC_MESSAGES
MSGFMT po/build/locale/sv/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/tr/LC_MESSAGES
MSGFMT po/build/locale/tr/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/vi/LC_MESSAGES
MSGFMT po/build/locale/vi/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/zh_CN/LC_MESSAGES
MSGFMT po/build/locale/zh_CN/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/zh_TW/LC_MESSAGES
MSGFMT po/build/locale/zh_TW/LC_MESSAGES/git.mo
MKDIR -p perl/build/lib
GEN perl/build/lib/Git.pm
MKDIR -p perl/build/lib/Git
GEN perl/build/lib/Git/LoadCPAN.pm
GEN perl/build/lib/Git/IndexInfo.pm
GEN perl/build/lib/Git/Packet.pm
GEN perl/build/lib/Git/I18N.pm
GEN perl/build/lib/Git/SVN.pm
MKDIR -p perl/build/lib/Git/LoadCPAN
GEN perl/build/lib/Git/LoadCPAN/Error.pm
MKDIR -p perl/build/lib/Git/SVN
GEN perl/build/lib/Git/SVN/GlobSpec.pm
GEN perl/build/lib/Git/SVN/Fetcher.pm
GEN perl/build/lib/Git/SVN/Log.pm
GEN perl/build/lib/Git/SVN/Editor.pm
GEN perl/build/lib/Git/SVN/Migration.pm
GEN perl/build/lib/Git/SVN/Prompt.pm
GEN perl/build/lib/Git/SVN/Ra.pm
GEN perl/build/lib/Git/SVN/Utils.pm
MKDIR -p perl/build/lib/Git/LoadCPAN/Mail
GEN perl/build/lib/Git/LoadCPAN/Mail/Address.pm
MKDIR -p perl/build/lib/Git/SVN/Memoize
GEN perl/build/lib/Git/SVN/Memoize/YAML.pm
MKDIR -p perl/build/lib/FromCPAN
GEN perl/build/lib/FromCPAN/Error.pm
MKDIR -p perl/build/lib/FromCPAN/Mail
GEN perl/build/lib/FromCPAN/Mail/Address.pm
CC reftable/basics_test.o
CC t/helper/test-fake-ssh.o
CC reftable/block_test.o
CC reftable/dump.o
CC reftable/merged_test.o
CC reftable/pq_test.o
CC reftable/record_test.o
CC reftable/readwrite_test.o
CC reftable/refname_test.o
CC reftable/stack_test.o
CC reftable/test_framework.o
CC reftable/tree_test.o
CC t/helper/test-tool.o
CC t/helper/test-advise.o
CC t/helper/test-bitmap.o
CC t/helper/test-bloom.o
CC t/helper/test-chmtime.o
CC t/helper/test-config.o
CC t/helper/test-crontab.o
CC t/helper/test-csprng.o
CC t/helper/test-ctype.o
CC t/helper/test-date.o
CC t/helper/test-delta.o
CC t/helper/test-dir-iterator.o
CC t/helper/test-drop-caches.o
CC t/helper/test-dump-cache-tree.o
CC t/helper/test-dump-fsmonitor.o
CC t/helper/test-dump-split-index.o
CC t/helper/test-dump-untracked-cache.o
CC t/helper/test-example-decorate.o
CC t/helper/test-fast-rebase.o
CC t/helper/test-genrandom.o
CC t/helper/test-genzeros.o
CC t/helper/test-getcwd.o
CC t/helper/test-hash-speed.o
CC t/helper/test-hash.o
CC t/helper/test-hashmap.o
CC t/helper/test-index-version.o
CC t/helper/test-json-writer.o
CC t/helper/test-lazy-init-name-hash.o
CC t/helper/test-match-trees.o
CC t/helper/test-mergesort.o
CC t/helper/test-mktemp.o
CC t/helper/test-oid-array.o
CC t/helper/test-oidmap.o
CC t/helper/test-oidtree.o
CC t/helper/test-online-cpus.o
CC t/helper/test-parse-options.o
CC t/helper/test-parse-pathspec-file.o
CC t/helper/test-partial-clone.o
CC t/helper/test-path-utils.o
CC t/helper/test-pcre2-config.o
CC t/helper/test-pkt-line.o
CC t/helper/test-prio-queue.o
CC t/helper/test-proc-receive.o
CC t/helper/test-progress.o
CC t/helper/test-reach.o
CC t/helper/test-read-cache.o
CC t/helper/test-read-graph.o
CC t/helper/test-read-midx.o
CC t/helper/test-ref-store.o
CC t/helper/test-reftable.o
CC t/helper/test-regex.o
CC t/helper/test-repository.o
CC t/helper/test-revision-walking.o
CC t/helper/test-run-command.o
CC t/helper/test-scrap-cache-tree.o
CC t/helper/test-serve-v2.o
CC t/helper/test-sha1.o
CC t/helper/test-sha256.o
CC t/helper/test-sigchain.o
CC t/helper/test-simple-ipc.o
CC t/helper/test-strcmp-offset.o
CC t/helper/test-string-list.o
CC t/helper/test-submodule-config.o
CC t/helper/test-submodule-nested-repo-config.o
CC t/helper/test-subprocess.o
CC t/helper/test-trace2.o
CC t/helper/test-urlmatch-normalization.o
CC t/helper/test-userdiff.o
CC t/helper/test-wildmatch.o
CC t/helper/test-windows-named-pipe.o
CC t/helper/test-write-cache.o
CC t/helper/test-xml-encode.o
MKDIR -p bin-wrappers
GEN bin-wrappers/git
GEN bin-wrappers/git-receive-pack
GEN bin-wrappers/git-shell
GEN bin-wrappers/git-upload-archive
GEN bin-wrappers/git-upload-pack
GEN bin-wrappers/git-cvsserver
GEN bin-wrappers/test-fake-ssh
GEN bin-wrappers/test-tool
AR reftable/libreftable_test.a
LINK t/helper/test-fake-ssh
LINK t/helper/test-tool
ek@apok:~/src/git ((5cb28270a1...)|BISECTING)$ make prefix="$HOME/mygit" install
SUBDIR git-gui
SUBDIR gitk-git
SUBDIR templates
install -d -m 755 '/home/ek/mygit/bin'
install -d -m 755 '/home/ek/mygit/libexec/git-core'
install git-daemon git-http-backend git-imap-send git-sh-i18n--envsubst git-shell git-http-fetch git-http-push git-remote-http git-remote-https git-remote-ftp git-remote-ftps '/home/ek/mygit/libexec/git-core'
install git-bisect git-difftool--helper git-filter-branch git-merge-octopus git-merge-one-file git-merge-resolve git-mergetool git-quiltimport git-request-pull git-submodule git-web--browse git-add--interactive git-archimport git-cvsexportcommit git-cvsimport git-cvsserver git-send-email git-svn git-p4 git-instaweb '/home/ek/mygit/libexec/git-core'
install -m 644 git-mergetool--lib git-sh-i18n git-sh-setup '/home/ek/mygit/libexec/git-core'
install git git-receive-pack git-shell git-upload-archive git-upload-pack '/home/ek/mygit/bin'
install git-cvsserver '/home/ek/mygit/bin'
make -C templates DESTDIR='' install
make[1]: Entering directory '/home/ek/src/git/templates'
install -d -m 755 '/home/ek/mygit/share/git-core/templates'
(cd blt && tar cf - .) | \
(cd '/home/ek/mygit/share/git-core/templates' && umask 022 && tar xof -)
make[1]: Leaving directory '/home/ek/src/git/templates'
install -d -m 755 '/home/ek/mygit/libexec/git-core/mergetools'
install -m 644 mergetools/* '/home/ek/mygit/libexec/git-core/mergetools'
install -d -m 755 '/home/ek/mygit/share/locale'
(cd po/build/locale && tar cf - .) | \
(cd '/home/ek/mygit/share/locale' && umask 022 && tar xof -)
install -d -m 755 '/home/ek/mygit/share/perl5'
(cd perl/build/lib && tar cf - .) | \
(cd '/home/ek/mygit/share/perl5' && umask 022 && tar xof -)
make -C gitweb install
make[1]: Entering directory '/home/ek/src/git/gitweb'
make[2]: Entering directory '/home/ek/src/git'
make[2]: 'GIT-VERSION-FILE' is up to date.
make[2]: Leaving directory '/home/ek/src/git'
GEN gitweb.cgi
GEN static/gitweb.js
install -d -m 755 '/home/ek/mygit/share/gitweb'
install -m 755 gitweb.cgi '/home/ek/mygit/share/gitweb'
install -d -m 755 '/home/ek/mygit/share/gitweb/static'
install -m 644 static/gitweb.js static/gitweb.css static/git-logo.png static/git-favicon.png '/home/ek/mygit/share/gitweb/static'
make[1]: Leaving directory '/home/ek/src/git/gitweb'
make -C gitk-git install
make[1]: Entering directory '/home/ek/src/git/gitk-git'
install -d -m 755 '/home/ek/mygit/bin'
install -m 755 gitk-wish '/home/ek/mygit/bin'/gitk
install -d -m 755 '/home/ek/mygit/share/gitk/lib/msgs'
install -m 644 po/bg.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/ca.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/de.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/es.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/fr.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/hu.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/it.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/ja.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/pt_br.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/pt_pt.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/ru.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/sv.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/vi.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/zh_cn.msg '/home/ek/mygit/share/gitk/lib/msgs' && true
make[1]: Leaving directory '/home/ek/src/git/gitk-git'
make -C git-gui gitexecdir='/home/ek/mygit/libexec/git-core' install
make[1]: Entering directory '/home/ek/src/git/git-gui'
DEST /home/ek/mygit/libexec/git-core
INSTALL 755 git-gui
INSTALL 755 git-gui--askpass
LINK git-citool -> git-gui
DEST /home/ek/mygit/share/git-gui/lib
INSTALL 644 tclIndex
INSTALL 644 about.tcl
INSTALL 644 blame.tcl
INSTALL 644 branch_checkout.tcl
INSTALL 644 branch_create.tcl
INSTALL 644 branch_delete.tcl
INSTALL 644 branch_rename.tcl
INSTALL 644 branch.tcl
INSTALL 644 browser.tcl
INSTALL 644 checkout_op.tcl
INSTALL 644 choose_font.tcl
INSTALL 644 choose_repository.tcl
INSTALL 644 choose_rev.tcl
INSTALL 644 chord.tcl
INSTALL 644 class.tcl
INSTALL 644 commit.tcl
INSTALL 644 console.tcl
INSTALL 644 database.tcl
INSTALL 644 date.tcl
INSTALL 644 diff.tcl
INSTALL 644 encoding.tcl
INSTALL 644 error.tcl
INSTALL 644 index.tcl
INSTALL 644 line.tcl
INSTALL 644 logo.tcl
INSTALL 644 merge.tcl
INSTALL 644 mergetool.tcl
INSTALL 644 option.tcl
INSTALL 644 remote_add.tcl
INSTALL 644 remote_branch_delete.tcl
INSTALL 644 remote.tcl
INSTALL 644 search.tcl
INSTALL 644 shortcut.tcl
INSTALL 644 spellcheck.tcl
INSTALL 644 sshkey.tcl
INSTALL 644 status_bar.tcl
INSTALL 644 themed.tcl
INSTALL 644 tools_dlg.tcl
INSTALL 644 tools.tcl
INSTALL 644 transport.tcl
INSTALL 644 win32.tcl
INSTALL 644 git-gui.ico
INSTALL 644 win32_shortcut.js
DEST /home/ek/mygit/share/git-gui/lib/msgs
INSTALL 644 bg.msg
INSTALL 644 de.msg
INSTALL 644 el.msg
INSTALL 644 fr.msg
INSTALL 644 hu.msg
INSTALL 644 it.msg
INSTALL 644 ja.msg
INSTALL 644 nb.msg
INSTALL 644 pt_br.msg
INSTALL 644 pt_pt.msg
INSTALL 644 ru.msg
INSTALL 644 sv.msg
INSTALL 644 vi.msg
INSTALL 644 zh_cn.msg
make[1]: Leaving directory '/home/ek/src/git/git-gui'
bindir=$(cd '/home/ek/mygit/bin' && pwd) && \
execdir=$(cd '/home/ek/mygit/libexec/git-core' && pwd) && \
destdir_from_execdir_SQ=$(echo 'libexec/git-core' | sed -e 's|[^/][^/]*|..|g') && \
{ test "$bindir/" = "$execdir/" || \
for p in git git-shell git-cvsserver; do \
rm -f "$execdir/$p" && \
test -n "" && \
ln -s "$destdir_from_execdir_SQ/bin/$p" "$execdir/$p" || \
{ test -z "" && \
ln "$bindir/$p" "$execdir/$p" 2>/dev/null || \
cp "$bindir/$p" "$execdir/$p" || exit; } \
done; \
} && \
for p in git-receive-pack git-upload-archive git-upload-pack; do \
rm -f "$bindir/$p" && \
test -n "" && \
ln -s "git" "$bindir/$p" || \
{ test -z "" && \
ln "$bindir/git" "$bindir/$p" 2>/dev/null || \
ln -s "git" "$bindir/$p" 2>/dev/null || \
cp "$bindir/git" "$bindir/$p" || exit; }; \
done && \
for p in git-add git-am git-annotate git-apply git-archive git-bisect--helper git-blame git-branch git-bugreport git-bundle git-cat-file git-check-attr git-check-ignore git-check-mailmap git-check-ref-format git-checkout--worker git-checkout-index git-checkout git-clean git-clone git-column git-commit-graph git-commit-tree git-commit git-config git-count-objects git-credential-cache--daemon git-credential-cache git-credential-store git-credential git-describe git-diff-files git-diff-index git-diff-tree git-diff git-difftool git-env--helper git-fast-export git-fast-import git-fetch-pack git-fetch git-fmt-merge-msg git-for-each-ref git-for-each-repo git-fsck git-gc git-get-tar-commit-id git-grep git-hash-object git-help git-hook git-index-pack git-init-db git-interpret-trailers git-log git-ls-files git-ls-remote git-ls-tree git-mailinfo git-mailsplit git-merge-base git-merge-file git-merge-index git-merge-ours git-merge-recursive git-merge-tree git-merge git-mktag git-mktree git-multi-pack-index git-mv git-name-rev git-notes git-pack-objects git-pack-redundant git-pack-refs git-patch-id git-prune-packed git-prune git-pull git-push git-range-diff git-read-tree git-rebase git-receive-pack git-reflog git-remote-ext git-remote-fd git-remote git-repack git-replace git-rerere git-reset git-rev-list git-rev-parse git-revert git-rm git-send-pack git-shortlog git-show-branch git-show-index git-show-ref git-sparse-checkout git-stash git-stripspace git-submodule--helper git-symbolic-ref git-tag git-unpack-file git-unpack-objects git-update-index git-update-ref git-update-server-info git-upload-archive git-upload-pack git-var git-verify-commit git-verify-pack git-verify-tag git-worktree git-write-tree git-cherry git-cherry-pick git-format-patch git-fsck-objects git-init git-maintenance git-merge-subtree git-restore git-show git-stage git-status git-switch git-whatchanged; do \
rm -f "$execdir/$p" && \
if test -z ""; \
then \
test -n "" && \
ln -s "$destdir_from_execdir_SQ/bin/git" "$execdir/$p" || \
{ test -z "" && \
ln "$execdir/git" "$execdir/$p" 2>/dev/null || \
ln -s "git" "$execdir/$p" 2>/dev/null || \
cp "$execdir/git" "$execdir/$p" || exit; }; \
fi \
done && \
remote_curl_aliases="git-remote-https git-remote-ftp git-remote-ftps" && \
for p in $remote_curl_aliases; do \
rm -f "$execdir/$p" && \
test -n "" && \
ln -s "git-remote-http" "$execdir/$p" || \
{ test -z "" && \
ln "$execdir/git-remote-http" "$execdir/$p" 2>/dev/null || \
ln -s "git-remote-http" "$execdir/$p" 2>/dev/null || \
cp "$execdir/git-remote-http" "$execdir/$p" || exit; } \
done
ek@apok:~/src/git ((5cb28270a1...)|BISECTING)$ pushd ~/tmp
~/tmp ~/src/git
ek@apok:~/tmp$ PATH="$HOME/mygit/bin:$PATH" GIT_SSH_COMMAND='{ pid="$(ps -o ppid:1= -p "$$")"; ps -o pid:1=,cmd= -p "$pid"; awk -v RS=\\0 "/^GIT_CONFIG/ { print \" \" \$0 }" "/proc/$pid/environ"; } 1>&2; ssh' GIT_CONFIG_COUNT=1 GIT_CONFIG_KEY_0=foo.bar GIT_CONFIG_VALUE_0=baz git clone --recurse-submodules git@github.com:EliahKagan/has-nested-submodule.git
Cloning into 'has-nested-submodule'...
1053383 git clone --recurse-submodules git@github.com:EliahKagan/has-nested-submodule.git
GIT_CONFIG_COUNT=1
GIT_CONFIG_KEY_0=foo.bar
GIT_CONFIG_VALUE_0=baz
remote: Enumerating objects: 4, done.
remote: Counting objects: 100% (4/4), done.
remote: Compressing objects: 100% (4/4), done.
remote: Total 4 (delta 0), reused 4 (delta 0), pack-reused 0
Receiving objects: 100% (4/4), done.
Submodule 'has-submodule' (git@github.com:EliahKagan/has-submodule.git) registered for path 'has-submodule'
Cloning into '/home/ek/tmp/has-nested-submodule/has-submodule'...
1053427 /home/ek/mygit/libexec/git-core/git clone --no-checkout --progress --separate-git-dir /home/ek/tmp/has-nested-submodule/.git/modules/has-submodule --no-single-branch -- git@github.com:EliahKagan/has-submodule.git /home/ek/tmp/has-nested-submodule/has-submodule
GIT_CONFIG_COUNT=1
GIT_CONFIG_KEY_0=foo.bar
GIT_CONFIG_VALUE_0=baz
remote: Enumerating objects: 4, done.
remote: Counting objects: 100% (4/4), done.
remote: Compressing objects: 100% (4/4), done.
remote: Total 4 (delta 0), reused 4 (delta 0), pack-reused 0
Receiving objects: 100% (4/4), done.
Submodule path 'has-submodule': checked out '8de4a40d782ddfd338f2ada312714d60541c6f80'
Submodule 'trivial' (git@github.com:EliahKagan/trivial.git) registered for path 'has-submodule/trivial'
Cloning into '/home/ek/tmp/has-nested-submodule/has-submodule/trivial'...
1053455 /home/ek/mygit/libexec/git-core/git clone --no-checkout --progress --separate-git-dir /home/ek/tmp/has-nested-submodule/.git/modules/has-submodule/modules/trivial --no-single-branch -- git@github.com:EliahKagan/trivial.git /home/ek/tmp/has-nested-submodule/has-submodule/trivial
GIT_CONFIG_KEY_0=foo.bar
GIT_CONFIG_PARAMETERS=
GIT_CONFIG_VALUE_0=baz
remote: Enumerating objects: 3, done.
remote: Counting objects: 100% (3/3), done.
remote: Compressing objects: 100% (2/2), done.
remote: Total 3 (delta 0), reused 3 (delta 0), pack-reused 0
Receiving objects: 100% (3/3), done.
Submodule path 'has-submodule/trivial': checked out '656a18dc1e48e035a05a72011a62bca5f41fa07e'
ek@apok:~/tmp$ rm -rf has-nested-submodule/
ek@apok:~/tmp$ popd
~/src/git
ek@apok:~/src/git ((5cb28270a1...)|BISECTING)$ rm -r ~/mygit
ek@apok:~/src/git ((5cb28270a1...)|BISECTING)$ gix clean -xde
removing .depend/ (🗑️)
removing GIT-BUILD-OPTIONS (🗑️)
removing GIT-CFLAGS (🗑️)
removing GIT-LDFLAGS (🗑️)
removing GIT-PERL-DEFINES (🗑️)
removing GIT-PERL-HEADER (🗑️)
removing GIT-PREFIX (🗑️)
removing GIT-PYTHON-VARS (🗑️)
removing GIT-SCRIPT-DEFINES (🗑️)
removing GIT-USER-AGENT (🗑️)
removing GIT-VERSION-FILE (🗑️)
removing abspath.o (🗑️)
removing add-interactive.o (🗑️)
removing add-patch.o (🗑️)
removing advice.o (🗑️)
removing alias.o (🗑️)
removing alloc.o (🗑️)
removing apply.o (🗑️)
removing archive-tar.o (🗑️)
removing archive-zip.o (🗑️)
removing archive.o (🗑️)
removing attr.o (🗑️)
removing base85.o (🗑️)
removing bin-wrappers/ (🗑️)
removing bisect.o (🗑️)
removing blame.o (🗑️)
removing blob.o (🗑️)
removing bloom.o (🗑️)
removing branch.o (🗑️)
removing builtin/.depend/ (🗑️)
removing builtin/add.o (🗑️)
removing builtin/am.o (🗑️)
removing builtin/annotate.o (🗑️)
removing builtin/apply.o (🗑️)
removing builtin/archive.o (🗑️)
removing builtin/bisect--helper.o (🗑️)
removing builtin/blame.o (🗑️)
removing builtin/branch.o (🗑️)
removing builtin/bugreport.o (🗑️)
removing builtin/bundle.o (🗑️)
removing builtin/cat-file.o (🗑️)
removing builtin/check-attr.o (🗑️)
removing builtin/check-ignore.o (🗑️)
removing builtin/check-mailmap.o (🗑️)
removing builtin/check-ref-format.o (🗑️)
removing builtin/checkout--worker.o (🗑️)
removing builtin/checkout-index.o (🗑️)
removing builtin/checkout.o (🗑️)
removing builtin/clean.o (🗑️)
removing builtin/clone.o (🗑️)
removing builtin/column.o (🗑️)
removing builtin/commit-graph.o (🗑️)
removing builtin/commit-tree.o (🗑️)
removing builtin/commit.o (🗑️)
removing builtin/config.o (🗑️)
removing builtin/count-objects.o (🗑️)
removing builtin/credential-cache--daemon.o (🗑️)
removing builtin/credential-cache.o (🗑️)
removing builtin/credential-store.o (🗑️)
removing builtin/credential.o (🗑️)
removing builtin/describe.o (🗑️)
removing builtin/diff-files.o (🗑️)
removing builtin/diff-index.o (🗑️)
removing builtin/diff-tree.o (🗑️)
removing builtin/diff.o (🗑️)
removing builtin/difftool.o (🗑️)
removing builtin/env--helper.o (🗑️)
removing builtin/fast-export.o (🗑️)
removing builtin/fast-import.o (🗑️)
removing builtin/fetch-pack.o (🗑️)
removing builtin/fetch.o (🗑️)
removing builtin/fmt-merge-msg.o (🗑️)
removing builtin/for-each-ref.o (🗑️)
removing builtin/for-each-repo.o (🗑️)
removing builtin/fsck.o (🗑️)
removing builtin/gc.o (🗑️)
removing builtin/get-tar-commit-id.o (🗑️)
removing builtin/grep.o (🗑️)
removing builtin/hash-object.o (🗑️)
removing builtin/help.o (🗑️)
removing builtin/hook.o (🗑️)
removing builtin/index-pack.o (🗑️)
removing builtin/init-db.o (🗑️)
removing builtin/interpret-trailers.o (🗑️)
removing builtin/log.o (🗑️)
removing builtin/ls-files.o (🗑️)
removing builtin/ls-remote.o (🗑️)
removing builtin/ls-tree.o (🗑️)
removing builtin/mailinfo.o (🗑️)
removing builtin/mailsplit.o (🗑️)
removing builtin/merge-base.o (🗑️)
removing builtin/merge-file.o (🗑️)
removing builtin/merge-index.o (🗑️)
removing builtin/merge-ours.o (🗑️)
removing builtin/merge-recursive.o (🗑️)
removing builtin/merge-tree.o (🗑️)
removing builtin/merge.o (🗑️)
removing builtin/mktag.o (🗑️)
removing builtin/mktree.o (🗑️)
removing builtin/multi-pack-index.o (🗑️)
removing builtin/mv.o (🗑️)
removing builtin/name-rev.o (🗑️)
removing builtin/notes.o (🗑️)
removing builtin/pack-objects.o (🗑️)
removing builtin/pack-redundant.o (🗑️)
removing builtin/pack-refs.o (🗑️)
removing builtin/patch-id.o (🗑️)
removing builtin/prune-packed.o (🗑️)
removing builtin/prune.o (🗑️)
removing builtin/pull.o (🗑️)
removing builtin/push.o (🗑️)
removing builtin/range-diff.o (🗑️)
removing builtin/read-tree.o (🗑️)
removing builtin/rebase.o (🗑️)
removing builtin/receive-pack.o (🗑️)
removing builtin/reflog.o (🗑️)
removing builtin/remote-ext.o (🗑️)
removing builtin/remote-fd.o (🗑️)
removing builtin/remote.o (🗑️)
removing builtin/repack.o (🗑️)
removing builtin/replace.o (🗑️)
removing builtin/rerere.o (🗑️)
removing builtin/reset.o (🗑️)
removing builtin/rev-list.o (🗑️)
removing builtin/rev-parse.o (🗑️)
removing builtin/revert.o (🗑️)
removing builtin/rm.o (🗑️)
removing builtin/send-pack.o (🗑️)
removing builtin/shortlog.o (🗑️)
removing builtin/show-branch.o (🗑️)
removing builtin/show-index.o (🗑️)
removing builtin/show-ref.o (🗑️)
removing builtin/sparse-checkout.o (🗑️)
removing builtin/stash.o (🗑️)
removing builtin/stripspace.o (🗑️)
removing builtin/submodule--helper.o (🗑️)
removing builtin/symbolic-ref.o (🗑️)
removing builtin/tag.o (🗑️)
removing builtin/unpack-file.o (🗑️)
removing builtin/unpack-objects.o (🗑️)
removing builtin/update-index.o (🗑️)
removing builtin/update-ref.o (🗑️)
removing builtin/update-server-info.o (🗑️)
removing builtin/upload-archive.o (🗑️)
removing builtin/upload-pack.o (🗑️)
removing builtin/var.o (🗑️)
removing builtin/verify-commit.o (🗑️)
removing builtin/verify-pack.o (🗑️)
removing builtin/verify-tag.o (🗑️)
removing builtin/worktree.o (🗑️)
removing builtin/write-tree.o (🗑️)
removing bulk-checkin.o (🗑️)
removing bundle.o (🗑️)
removing cache-tree.o (🗑️)
removing cbtree.o (🗑️)
removing chdir-notify.o (🗑️)
removing checkout.o (🗑️)
removing chunk-format.o (🗑️)
removing color.o (🗑️)
removing column.o (🗑️)
removing combine-diff.o (🗑️)
removing command-list.h (🗑️)
removing commit-graph.o (🗑️)
removing commit-reach.o (🗑️)
removing commit.o (🗑️)
removing common-main.o (🗑️)
removing compat/.depend/ (🗑️)
removing compat/fopen.o (🗑️)
removing compat/linux/.depend/ (🗑️)
removing compat/linux/procinfo.o (🗑️)
removing compat/obstack.o (🗑️)
removing compat/qsort_s.o (🗑️)
removing compat/simple-ipc/.depend/ (🗑️)
removing compat/simple-ipc/ipc-shared.o (🗑️)
removing compat/simple-ipc/ipc-unix-socket.o (🗑️)
removing compat/strlcpy.o (🗑️)
removing compat/terminal.o (🗑️)
removing compat/zlib-uncompress2.o (🗑️)
removing config-list.h (🗑️)
removing config.o (🗑️)
removing connect.o (🗑️)
removing connected.o (🗑️)
removing contrib/scalar/.depend/ (🗑️)
removing convert.o (🗑️)
removing copy.o (🗑️)
removing credential.o (🗑️)
removing csum-file.o (🗑️)
removing ctype.o (🗑️)
removing daemon.o (🗑️)
removing date.o (🗑️)
removing decorate.o (🗑️)
removing delta-islands.o (🗑️)
removing diff-delta.o (🗑️)
removing diff-lib.o (🗑️)
removing diff-merges.o (🗑️)
removing diff-no-index.o (🗑️)
removing diff.o (🗑️)
removing diffcore-break.o (🗑️)
removing diffcore-delta.o (🗑️)
removing diffcore-order.o (🗑️)
removing diffcore-pickaxe.o (🗑️)
removing diffcore-rename.o (🗑️)
removing diffcore-rotate.o (🗑️)
removing dir-iterator.o (🗑️)
removing dir.o (🗑️)
removing editor.o (🗑️)
removing entry.o (🗑️)
removing environment.o (🗑️)
removing ewah/.depend/ (🗑️)
removing ewah/bitmap.o (🗑️)
removing ewah/ewah_bitmap.o (🗑️)
removing ewah/ewah_io.o (🗑️)
removing ewah/ewah_rlw.o (🗑️)
removing exec-cmd.o (🗑️)
removing fetch-negotiator.o (🗑️)
removing fetch-pack.o (🗑️)
removing fmt-merge-msg.o (🗑️)
removing fsck.o (🗑️)
removing fsmonitor.o (🗑️)
removing fuzz-commit-graph.o (🗑️)
removing fuzz-pack-headers.o (🗑️)
removing fuzz-pack-idx.o (🗑️)
removing gettext.o (🗑️)
removing git (🗑️)
removing git-add (🗑️)
removing git-add--interactive (🗑️)
removing git-am (🗑️)
removing git-annotate (🗑️)
removing git-apply (🗑️)
removing git-archimport (🗑️)
removing git-archive (🗑️)
removing git-bisect (🗑️)
removing git-bisect--helper (🗑️)
removing git-blame (🗑️)
removing git-branch (🗑️)
removing git-bugreport (🗑️)
removing git-bundle (🗑️)
removing git-cat-file (🗑️)
removing git-check-attr (🗑️)
removing git-check-ignore (🗑️)
removing git-check-mailmap (🗑️)
removing git-check-ref-format (🗑️)
removing git-checkout (🗑️)
removing git-checkout--worker (🗑️)
removing git-checkout-index (🗑️)
removing git-cherry (🗑️)
removing git-cherry-pick (🗑️)
removing git-clean (🗑️)
removing git-clone (🗑️)
removing git-column (🗑️)
removing git-commit (🗑️)
removing git-commit-graph (🗑️)
removing git-commit-tree (🗑️)
removing git-config (🗑️)
removing git-count-objects (🗑️)
removing git-credential (🗑️)
removing git-credential-cache (🗑️)
removing git-credential-cache--daemon (🗑️)
removing git-credential-store (🗑️)
removing git-cvsexportcommit (🗑️)
removing git-cvsimport (🗑️)
removing git-cvsserver (🗑️)
removing git-daemon (🗑️)
removing git-describe (🗑️)
removing git-diff (🗑️)
removing git-diff-files (🗑️)
removing git-diff-index (🗑️)
removing git-diff-tree (🗑️)
removing git-difftool (🗑️)
removing git-difftool--helper (🗑️)
removing git-env--helper (🗑️)
removing git-fast-export (🗑️)
removing git-fast-import (🗑️)
removing git-fetch (🗑️)
removing git-fetch-pack (🗑️)
removing git-filter-branch (🗑️)
removing git-fmt-merge-msg (🗑️)
removing git-for-each-ref (🗑️)
removing git-for-each-repo (🗑️)
removing git-format-patch (🗑️)
removing git-fsck (🗑️)
removing git-fsck-objects (🗑️)
removing git-gc (🗑️)
removing git-get-tar-commit-id (🗑️)
removing git-grep (🗑️)
removing git-gui/GIT-GUI-VARS (🗑️)
removing git-gui/GIT-VERSION-FILE (🗑️)
removing git-gui/git-gui (🗑️)
removing git-gui/lib/tclIndex (🗑️)
removing git-gui/po/bg.msg (🗑️)
removing git-gui/po/de.msg (🗑️)
removing git-gui/po/el.msg (🗑️)
removing git-gui/po/fr.msg (🗑️)
removing git-gui/po/hu.msg (🗑️)
removing git-gui/po/it.msg (🗑️)
removing git-gui/po/ja.msg (🗑️)
removing git-gui/po/nb.msg (🗑️)
removing git-gui/po/pt_br.msg (🗑️)
removing git-gui/po/pt_pt.msg (🗑️)
removing git-gui/po/ru.msg (🗑️)
removing git-gui/po/sv.msg (🗑️)
removing git-gui/po/vi.msg (🗑️)
removing git-gui/po/zh_cn.msg (🗑️)
removing git-hash-object (🗑️)
removing git-help (🗑️)
removing git-hook (🗑️)
removing git-http-backend (🗑️)
removing git-http-fetch (🗑️)
removing git-http-push (🗑️)
removing git-imap-send (🗑️)
removing git-index-pack (🗑️)
removing git-init (🗑️)
removing git-init-db (🗑️)
removing git-instaweb (🗑️)
removing git-interpret-trailers (🗑️)
removing git-log (🗑️)
removing git-ls-files (🗑️)
removing git-ls-remote (🗑️)
removing git-ls-tree (🗑️)
removing git-mailinfo (🗑️)
removing git-mailsplit (🗑️)
removing git-maintenance (🗑️)
removing git-merge (🗑️)
removing git-merge-base (🗑️)
removing git-merge-file (🗑️)
removing git-merge-index (🗑️)
removing git-merge-octopus (🗑️)
removing git-merge-one-file (🗑️)
removing git-merge-ours (🗑️)
removing git-merge-recursive (🗑️)
removing git-merge-resolve (🗑️)
removing git-merge-subtree (🗑️)
removing git-merge-tree (🗑️)
removing git-mergetool (🗑️)
removing git-mergetool--lib (🗑️)
removing git-mktag (🗑️)
removing git-mktree (🗑️)
removing git-multi-pack-index (🗑️)
removing git-mv (🗑️)
removing git-name-rev (🗑️)
removing git-notes (🗑️)
removing git-p4 (🗑️)
removing git-pack-objects (🗑️)
removing git-pack-redundant (🗑️)
removing git-pack-refs (🗑️)
removing git-patch-id (🗑️)
removing git-prune (🗑️)
removing git-prune-packed (🗑️)
removing git-pull (🗑️)
removing git-push (🗑️)
removing git-quiltimport (🗑️)
removing git-range-diff (🗑️)
removing git-read-tree (🗑️)
removing git-rebase (🗑️)
removing git-receive-pack (🗑️)
removing git-reflog (🗑️)
removing git-remote (🗑️)
removing git-remote-ext (🗑️)
removing git-remote-fd (🗑️)
removing git-remote-ftp (🗑️)
removing git-remote-ftps (🗑️)
removing git-remote-http (🗑️)
removing git-remote-https (🗑️)
removing git-repack (🗑️)
removing git-replace (🗑️)
removing git-request-pull (🗑️)
removing git-rerere (🗑️)
removing git-reset (🗑️)
removing git-restore (🗑️)
removing git-rev-list (🗑️)
removing git-rev-parse (🗑️)
removing git-revert (🗑️)
removing git-rm (🗑️)
removing git-send-email (🗑️)
removing git-send-pack (🗑️)
removing git-sh-i18n (🗑️)
removing git-sh-i18n--envsubst (🗑️)
removing git-sh-setup (🗑️)
removing git-shell (🗑️)
removing git-shortlog (🗑️)
removing git-show (🗑️)
removing git-show-branch (🗑️)
removing git-show-index (🗑️)
removing git-show-ref (🗑️)
removing git-sparse-checkout (🗑️)
removing git-stage (🗑️)
removing git-stash (🗑️)
removing git-status (🗑️)
removing git-stripspace (🗑️)
removing git-submodule (🗑️)
removing git-submodule--helper (🗑️)
removing git-svn (🗑️)
removing git-switch (🗑️)
removing git-symbolic-ref (🗑️)
removing git-tag (🗑️)
removing git-unpack-file (🗑️)
removing git-unpack-objects (🗑️)
removing git-update-index (🗑️)
removing git-update-ref (🗑️)
removing git-update-server-info (🗑️)
removing git-upload-archive (🗑️)
removing git-upload-pack (🗑️)
removing git-var (🗑️)
removing git-verify-commit (🗑️)
removing git-verify-pack (🗑️)
removing git-verify-tag (🗑️)
removing git-web--browse (🗑️)
removing git-whatchanged (🗑️)
removing git-worktree (🗑️)
removing git-write-tree (🗑️)
removing git.o (🗑️)
removing gitk-git/GIT-TCLTK-VARS (🗑️)
removing gitk-git/gitk-wish (🗑️)
removing gitk-git/po/bg.msg (🗑️)
removing gitk-git/po/ca.msg (🗑️)
removing gitk-git/po/de.msg (🗑️)
removing gitk-git/po/es.msg (🗑️)
removing gitk-git/po/fr.msg (🗑️)
removing gitk-git/po/hu.msg (🗑️)
removing gitk-git/po/it.msg (🗑️)
removing gitk-git/po/ja.msg (🗑️)
removing gitk-git/po/pt_br.msg (🗑️)
removing gitk-git/po/pt_pt.msg (🗑️)
removing gitk-git/po/ru.msg (🗑️)
removing gitk-git/po/sv.msg (🗑️)
removing gitk-git/po/vi.msg (🗑️)
removing gitk-git/po/zh_cn.msg (🗑️)
removing gitweb/GITWEB-BUILD-OPTIONS (🗑️)
removing gitweb/gitweb.cgi (🗑️)
removing gitweb/static/gitweb.js (🗑️)
removing gpg-interface.o (🗑️)
removing graph.o (🗑️)
removing grep.o (🗑️)
removing hash-lookup.o (🗑️)
removing hashmap.o (🗑️)
removing help.o (🗑️)
removing hex.o (🗑️)
removing hook-list.h (🗑️)
removing hook.o (🗑️)
removing http-backend.o (🗑️)
removing http-fetch.o (🗑️)
removing http-push.o (🗑️)
removing http-walker.o (🗑️)
removing http.o (🗑️)
removing ident.o (🗑️)
removing imap-send.o (🗑️)
removing json-writer.o (🗑️)
removing kwset.o (🗑️)
removing levenshtein.o (🗑️)
removing libgit.a (🗑️)
removing line-log.o (🗑️)
removing line-range.o (🗑️)
removing linear-assignment.o (🗑️)
removing list-objects-filter-options.o (🗑️)
removing list-objects-filter.o (🗑️)
removing list-objects.o (🗑️)
removing ll-merge.o (🗑️)
removing lockfile.o (🗑️)
removing log-tree.o (🗑️)
removing ls-refs.o (🗑️)
removing mailinfo.o (🗑️)
removing mailmap.o (🗑️)
removing match-trees.o (🗑️)
removing mem-pool.o (🗑️)
removing merge-blobs.o (🗑️)
removing merge-ort-wrappers.o (🗑️)
removing merge-ort.o (🗑️)
removing merge-recursive.o (🗑️)
removing merge.o (🗑️)
removing mergesort.o (🗑️)
removing midx.o (🗑️)
removing name-hash.o (🗑️)
removing negotiator/.depend/ (🗑️)
removing negotiator/default.o (🗑️)
removing negotiator/noop.o (🗑️)
removing negotiator/skipping.o (🗑️)
removing notes-cache.o (🗑️)
removing notes-merge.o (🗑️)
removing notes-utils.o (🗑️)
removing notes.o (🗑️)
removing object-file.o (🗑️)
removing object-name.o (🗑️)
removing object.o (🗑️)
removing oid-array.o (🗑️)
removing oidmap.o (🗑️)
removing oidset.o (🗑️)
removing oidtree.o (🗑️)
removing pack-bitmap-write.o (🗑️)
removing pack-bitmap.o (🗑️)
removing pack-check.o (🗑️)
removing pack-objects.o (🗑️)
removing pack-revindex.o (🗑️)
removing pack-write.o (🗑️)
removing packfile.o (🗑️)
removing pager.o (🗑️)
removing parallel-checkout.o (🗑️)
removing parse-options-cb.o (🗑️)
removing parse-options.o (🗑️)
removing patch-delta.o (🗑️)
removing patch-ids.o (🗑️)
removing path.o (🗑️)
removing pathspec.o (🗑️)
removing perl/build/ (🗑️)
removing pkt-line.o (🗑️)
removing po/build/ (🗑️)
removing preload-index.o (🗑️)
removing pretty.o (🗑️)
removing prio-queue.o (🗑️)
removing progress.o (🗑️)
removing promisor-remote.o (🗑️)
removing prompt.o (🗑️)
removing protocol-caps.o (🗑️)
removing protocol.o (🗑️)
removing prune-packed.o (🗑️)
removing quote.o (🗑️)
removing range-diff.o (🗑️)
removing reachable.o (🗑️)
removing read-cache.o (🗑️)
removing rebase-interactive.o (🗑️)
removing rebase.o (🗑️)
removing ref-filter.o (🗑️)
removing reflog-walk.o (🗑️)
removing reflog.o (🗑️)
removing refs.o (🗑️)
removing refs/.depend/ (🗑️)
removing refs/debug.o (🗑️)
removing refs/files-backend.o (🗑️)
removing refs/iterator.o (🗑️)
removing refs/packed-backend.o (🗑️)
removing refs/ref-cache.o (🗑️)
removing refspec.o (🗑️)
removing reftable/.depend/ (🗑️)
removing reftable/basics.o (🗑️)
removing reftable/basics_test.o (🗑️)
removing reftable/block.o (🗑️)
removing reftable/block_test.o (🗑️)
removing reftable/blocksource.o (🗑️)
removing reftable/dump.o (🗑️)
removing reftable/error.o (🗑️)
removing reftable/generic.o (🗑️)
removing reftable/iter.o (🗑️)
removing reftable/libreftable.a (🗑️)
removing reftable/libreftable_test.a (🗑️)
removing reftable/merged.o (🗑️)
removing reftable/merged_test.o (🗑️)
removing reftable/pq.o (🗑️)
removing reftable/pq_test.o (🗑️)
removing reftable/publicbasics.o (🗑️)
removing reftable/reader.o (🗑️)
removing reftable/readwrite_test.o (🗑️)
removing reftable/record.o (🗑️)
removing reftable/record_test.o (🗑️)
removing reftable/refname.o (🗑️)
removing reftable/refname_test.o (🗑️)
removing reftable/stack.o (🗑️)
removing reftable/stack_test.o (🗑️)
removing reftable/test_framework.o (🗑️)
removing reftable/tree.o (🗑️)
removing reftable/tree_test.o (🗑️)
removing reftable/writer.o (🗑️)
removing remote-curl.o (🗑️)
removing remote.o (🗑️)
removing replace-object.o (🗑️)
removing repo-settings.o (🗑️)
removing repository.o (🗑️)
removing rerere.o (🗑️)
removing reset.o (🗑️)
removing resolve-undo.o (🗑️)
removing revision.o (🗑️)
removing run-command.o (🗑️)
removing send-pack.o (🗑️)
removing sequencer.o (🗑️)
removing serve.o (🗑️)
removing server-info.o (🗑️)
removing setup.o (🗑️)
removing sh-i18n--envsubst.o (🗑️)
removing sha1dc/.depend/ (🗑️)
removing sha1dc/sha1.o (🗑️)
removing sha1dc/ubc_check.o (🗑️)
removing sha1dc_git.o (🗑️)
removing sha256/block/.depend/ (🗑️)
removing sha256/block/sha256.o (🗑️)
removing shallow.o (🗑️)
removing shell.o (🗑️)
removing sideband.o (🗑️)
removing sigchain.o (🗑️)
removing sparse-index.o (🗑️)
removing split-index.o (🗑️)
removing stable-qsort.o (🗑️)
removing strbuf.o (🗑️)
removing streaming.o (🗑️)
removing string-list.o (🗑️)
removing strmap.o (🗑️)
removing strvec.o (🗑️)
removing sub-process.o (🗑️)
removing submodule-config.o (🗑️)
removing submodule.o (🗑️)
removing symlinks.o (🗑️)
removing t/helper/.depend/ (🗑️)
removing t/helper/test-advise.o (🗑️)
removing t/helper/test-bitmap.o (🗑️)
removing t/helper/test-bloom.o (🗑️)
removing t/helper/test-chmtime.o (🗑️)
removing t/helper/test-config.o (🗑️)
removing t/helper/test-crontab.o (🗑️)
removing t/helper/test-csprng.o (🗑️)
removing t/helper/test-ctype.o (🗑️)
removing t/helper/test-date.o (🗑️)
removing t/helper/test-delta.o (🗑️)
removing t/helper/test-dir-iterator.o (🗑️)
removing t/helper/test-drop-caches.o (🗑️)
removing t/helper/test-dump-cache-tree.o (🗑️)
removing t/helper/test-dump-fsmonitor.o (🗑️)
removing t/helper/test-dump-split-index.o (🗑️)
removing t/helper/test-dump-untracked-cache.o (🗑️)
removing t/helper/test-example-decorate.o (🗑️)
removing t/helper/test-fake-ssh (🗑️)
removing t/helper/test-fake-ssh.o (🗑️)
removing t/helper/test-fast-rebase.o (🗑️)
removing t/helper/test-genrandom.o (🗑️)
removing t/helper/test-genzeros.o (🗑️)
removing t/helper/test-getcwd.o (🗑️)
removing t/helper/test-hash-speed.o (🗑️)
removing t/helper/test-hash.o (🗑️)
removing t/helper/test-hashmap.o (🗑️)
removing t/helper/test-index-version.o (🗑️)
removing t/helper/test-json-writer.o (🗑️)
removing t/helper/test-lazy-init-name-hash.o (🗑️)
removing t/helper/test-match-trees.o (🗑️)
removing t/helper/test-mergesort.o (🗑️)
removing t/helper/test-mktemp.o (🗑️)
removing t/helper/test-oid-array.o (🗑️)
removing t/helper/test-oidmap.o (🗑️)
removing t/helper/test-oidtree.o (🗑️)
removing t/helper/test-online-cpus.o (🗑️)
removing t/helper/test-parse-options.o (🗑️)
removing t/helper/test-parse-pathspec-file.o (🗑️)
removing t/helper/test-partial-clone.o (🗑️)
removing t/helper/test-path-utils.o (🗑️)
removing t/helper/test-pcre2-config.o (🗑️)
removing t/helper/test-pkt-line.o (🗑️)
removing t/helper/test-prio-queue.o (🗑️)
removing t/helper/test-proc-receive.o (🗑️)
removing t/helper/test-progress.o (🗑️)
removing t/helper/test-reach.o (🗑️)
removing t/helper/test-read-cache.o (🗑️)
removing t/helper/test-read-graph.o (🗑️)
removing t/helper/test-read-midx.o (🗑️)
removing t/helper/test-ref-store.o (🗑️)
removing t/helper/test-reftable.o (🗑️)
removing t/helper/test-regex.o (🗑️)
removing t/helper/test-repository.o (🗑️)
removing t/helper/test-revision-walking.o (🗑️)
removing t/helper/test-run-command.o (🗑️)
removing t/helper/test-scrap-cache-tree.o (🗑️)
removing t/helper/test-serve-v2.o (🗑️)
removing t/helper/test-sha1.o (🗑️)
removing t/helper/test-sha256.o (🗑️)
removing t/helper/test-sigchain.o (🗑️)
removing t/helper/test-simple-ipc.o (🗑️)
removing t/helper/test-strcmp-offset.o (🗑️)
removing t/helper/test-string-list.o (🗑️)
removing t/helper/test-submodule-config.o (🗑️)
removing t/helper/test-submodule-nested-repo-config.o (🗑️)
removing t/helper/test-subprocess.o (🗑️)
removing t/helper/test-tool (🗑️)
removing t/helper/test-tool.o (🗑️)
removing t/helper/test-trace2.o (🗑️)
removing t/helper/test-urlmatch-normalization.o (🗑️)
removing t/helper/test-userdiff.o (🗑️)
removing t/helper/test-wildmatch.o (🗑️)
removing t/helper/test-windows-named-pipe.o (🗑️)
removing t/helper/test-write-cache.o (🗑️)
removing t/helper/test-xml-encode.o (🗑️)
removing tag.o (🗑️)
removing tempfile.o (🗑️)
removing templates/blt/ (🗑️)
removing templates/boilerplates.made (🗑️)
removing thread-utils.o (🗑️)
removing tmp-objdir.o (🗑️)
removing trace.o (🗑️)
removing trace2.o (🗑️)
removing trace2/.depend/ (🗑️)
removing trace2/tr2_cfg.o (🗑️)
removing trace2/tr2_cmd_name.o (🗑️)
removing trace2/tr2_dst.o (🗑️)
removing trace2/tr2_sid.o (🗑️)
removing trace2/tr2_sysenv.o (🗑️)
removing trace2/tr2_tbuf.o (🗑️)
removing trace2/tr2_tgt_event.o (🗑️)
removing trace2/tr2_tgt_normal.o (🗑️)
removing trace2/tr2_tgt_perf.o (🗑️)
removing trace2/tr2_tls.o (🗑️)
removing trailer.o (🗑️)
removing transport-helper.o (🗑️)
removing transport.o (🗑️)
removing tree-diff.o (🗑️)
removing tree-walk.o (🗑️)
removing tree.o (🗑️)
removing unix-socket.o (🗑️)
removing unix-stream-server.o (🗑️)
removing unpack-trees.o (🗑️)
removing upload-pack.o (🗑️)
removing url.o (🗑️)
removing urlmatch.o (🗑️)
removing usage.o (🗑️)
removing userdiff.o (🗑️)
removing utf8.o (🗑️)
removing varint.o (🗑️)
removing version.o (🗑️)
removing versioncmp.o (🗑️)
removing walker.o (🗑️)
removing wildmatch.o (🗑️)
removing worktree.o (🗑️)
removing wrapper.o (🗑️)
removing write-or-die.o (🗑️)
removing ws.o (🗑️)
removing wt-status.o (🗑️)
removing xdiff-interface.o (🗑️)
removing xdiff/.depend/ (🗑️)
removing xdiff/lib.a (🗑️)
removing xdiff/xdiffi.o (🗑️)
removing xdiff/xemit.o (🗑️)
removing xdiff/xhistogram.o (🗑️)
removing xdiff/xmerge.o (🗑️)
removing xdiff/xpatience.o (🗑️)
removing xdiff/xprepare.o (🗑️)
removing xdiff/xutils.o (🗑️)
removing zlib.o (🗑️)
ek@apok:~/src/git ((5cb28270a1...)|BISECTING)$ git bisect old
Bisecting: 128 revisions left to test after this (roughly 7 steps)
[4b6846d9dcd391164b72bd70e8a0c0e09776afe3] The 17th batch
ek@apok:~/src/git ((4b6846d9dc...)|BISECTING)$ make prefix="$HOME/mygit" -j5
GIT_VERSION = 2.35.1.735.g4b6846d9dc
* new build flags
CC fuzz-commit-graph.o
CC fuzz-pack-headers.o
CC fuzz-pack-idx.o
CC daemon.o
CC common-main.o
CC abspath.o
* new link flags
CC add-interactive.o
CC add-patch.o
CC advice.o
CC alias.o
CC alloc.o
CC apply.o
CC archive-tar.o
CC archive-zip.o
CC archive.o
* new prefix flags
CC base85.o
CC bisect.o
CC blame.o
CC blob.o
CC bloom.o
CC branch.o
CC bulk-checkin.o
CC bundle.o
CC cache-tree.o
CC cbtree.o
CC chdir-notify.o
CC checkout.o
CC chunk-format.o
CC color.o
CC column.o
CC combine-diff.o
CC commit-graph.o
CC commit-reach.o
CC commit.o
CC compat/obstack.o
CC compat/terminal.o
CC compat/zlib-uncompress2.o
CC config.o
CC connect.o
CC connected.o
CC convert.o
CC copy.o
CC credential.o
CC csum-file.o
CC ctype.o
CC date.o
CC decorate.o
CC delta-islands.o
CC diff-delta.o
CC diff-merges.o
CC diff-lib.o
CC diff-no-index.o
CC diff.o
CC diffcore-break.o
CC diffcore-delta.o
CC diffcore-order.o
CC diffcore-pickaxe.o
CC diffcore-rename.o
CC diffcore-rotate.o
CC dir-iterator.o
CC dir.o
CC editor.o
CC entry.o
CC environment.o
CC ewah/bitmap.o
CC ewah/ewah_bitmap.o
CC ewah/ewah_io.o
CC ewah/ewah_rlw.o
CC exec-cmd.o
CC fetch-negotiator.o
CC fetch-pack.o
CC fmt-merge-msg.o
CC fsck.o
CC fsmonitor.o
CC gettext.o
CC gpg-interface.o
CC graph.o
CC grep.o
CC hash-lookup.o
CC hashmap.o
GEN command-list.h
CC hex.o
CC hook.o
CC ident.o
CC json-writer.o
CC kwset.o
CC levenshtein.o
CC line-log.o
CC line-range.o
CC linear-assignment.o
CC list-objects-filter-options.o
CC list-objects-filter.o
CC list-objects.o
CC ll-merge.o
CC lockfile.o
CC log-tree.o
CC ls-refs.o
CC mailinfo.o
CC mailmap.o
CC match-trees.o
CC mem-pool.o
CC merge-blobs.o
CC merge-ort.o
CC merge-ort-wrappers.o
CC merge-recursive.o
CC merge.o
CC mergesort.o
CC midx.o
CC name-hash.o
CC negotiator/default.o
CC negotiator/noop.o
CC negotiator/skipping.o
CC notes-cache.o
CC notes-merge.o
CC notes-utils.o
CC notes.o
CC object-file.o
CC object-name.o
CC object.o
CC oid-array.o
CC oidmap.o
CC oidset.o
CC oidtree.o
CC pack-bitmap-write.o
CC pack-bitmap.o
CC pack-check.o
CC pack-objects.o
CC pack-revindex.o
CC pack-write.o
CC packfile.o
CC pager.o
CC parallel-checkout.o
CC parse-options-cb.o
CC parse-options.o
CC patch-delta.o
CC patch-ids.o
CC path.o
CC pathspec.o
CC pkt-line.o
CC preload-index.o
CC pretty.o
CC prio-queue.o
CC progress.o
CC promisor-remote.o
CC prompt.o
CC protocol.o
CC protocol-caps.o
CC prune-packed.o
CC quote.o
CC range-diff.o
CC reachable.o
CC read-cache.o
CC rebase-interactive.o
CC rebase.o
CC ref-filter.o
CC reflog-walk.o
CC reflog.o
CC refs.o
CC refs/debug.o
CC refs/files-backend.o
CC refs/iterator.o
CC refs/packed-backend.o
CC refs/ref-cache.o
CC refspec.o
CC remote.o
CC replace-object.o
CC repo-settings.o
CC repository.o
CC rerere.o
CC reset.o
CC resolve-undo.o
CC revision.o
CC run-command.o
CC send-pack.o
CC sequencer.o
CC serve.o
CC server-info.o
CC setup.o
CC shallow.o
CC sideband.o
CC sigchain.o
CC sparse-index.o
CC split-index.o
CC stable-qsort.o
CC strbuf.o
CC streaming.o
CC string-list.o
CC strmap.o
CC strvec.o
CC sub-process.o
CC submodule-config.o
CC submodule.o
CC symlinks.o
CC tag.o
CC tempfile.o
CC thread-utils.o
CC tmp-objdir.o
CC trace.o
CC trace2.o
CC trace2/tr2_cfg.o
CC trace2/tr2_cmd_name.o
CC trace2/tr2_dst.o
CC trace2/tr2_sid.o
CC trace2/tr2_sysenv.o
CC trace2/tr2_tbuf.o
CC trace2/tr2_tgt_event.o
CC trace2/tr2_tgt_normal.o
CC trace2/tr2_tgt_perf.o
CC trace2/tr2_tls.o
CC trailer.o
CC transport-helper.o
CC transport.o
CC tree-diff.o
CC tree-walk.o
CC tree.o
CC unpack-trees.o
CC upload-pack.o
CC url.o
CC urlmatch.o
CC usage.o
CC userdiff.o
CC utf8.o
CC varint.o
CC versioncmp.o
CC walker.o
CC wildmatch.o
CC worktree.o
CC wrapper.o
CC write-or-die.o
CC ws.o
CC wt-status.o
CC xdiff-interface.o
CC zlib.o
CC unix-socket.o
CC unix-stream-server.o
CC compat/simple-ipc/ipc-shared.o
CC compat/simple-ipc/ipc-unix-socket.o
CC sha1dc_git.o
CC sha1dc/sha1.o
CC sha1dc/ubc_check.o
CC sha256/block/sha256.o
CC compat/linux/procinfo.o
CC compat/fopen.o
CC compat/strlcpy.o
CC compat/qsort_s.o
CC xdiff/xdiffi.o
CC xdiff/xemit.o
CC xdiff/xhistogram.o
CC xdiff/xmerge.o
CC xdiff/xpatience.o
CC xdiff/xprepare.o
CC xdiff/xutils.o
CC reftable/basics.o
CC reftable/error.o
CC reftable/block.o
CC reftable/blocksource.o
CC reftable/iter.o
CC reftable/publicbasics.o
CC reftable/merged.o
CC reftable/pq.o
CC reftable/reader.o
CC reftable/record.o
CC reftable/refname.o
CC reftable/generic.o
CC reftable/stack.o
CC reftable/tree.o
CC reftable/writer.o
CC http-backend.o
CC imap-send.o
CC http.o
CC sh-i18n--envsubst.o
CC shell.o
CC http-walker.o
CC http-fetch.o
CC http-push.o
CC remote-curl.o
* new script parameters
* new perl-specific parameters
* new Python interpreter location
GEN git-instaweb
CC git.o
CC builtin/add.o
CC builtin/am.o
CC builtin/annotate.o
CC builtin/apply.o
CC builtin/archive.o
CC builtin/bisect--helper.o
CC builtin/blame.o
CC builtin/branch.o
GEN hook-list.h
CC builtin/bundle.o
CC builtin/cat-file.o
CC builtin/check-attr.o
CC builtin/check-ignore.o
CC builtin/check-mailmap.o
CC builtin/check-ref-format.o
CC builtin/checkout--worker.o
CC builtin/checkout-index.o
CC builtin/checkout.o
CC builtin/clean.o
CC builtin/clone.o
CC builtin/column.o
CC builtin/commit-graph.o
CC builtin/commit-tree.o
CC builtin/commit.o
CC builtin/config.o
CC builtin/count-objects.o
CC builtin/credential-cache--daemon.o
CC builtin/credential-cache.o
CC builtin/credential-store.o
CC builtin/credential.o
CC builtin/describe.o
CC builtin/diff-files.o
CC builtin/diff-index.o
CC builtin/diff-tree.o
CC builtin/diff.o
CC builtin/difftool.o
CC builtin/env--helper.o
CC builtin/fast-export.o
CC builtin/fast-import.o
CC builtin/fetch-pack.o
CC builtin/fetch.o
CC builtin/fmt-merge-msg.o
CC builtin/for-each-ref.o
CC builtin/for-each-repo.o
CC builtin/fsck.o
CC builtin/gc.o
CC builtin/get-tar-commit-id.o
CC builtin/grep.o
CC builtin/hash-object.o
GEN config-list.h
CC builtin/hook.o
CC builtin/index-pack.o
CC builtin/init-db.o
CC builtin/interpret-trailers.o
CC builtin/log.o
CC builtin/ls-files.o
CC builtin/ls-remote.o
CC builtin/ls-tree.o
CC builtin/mailinfo.o
CC builtin/mailsplit.o
CC builtin/merge-base.o
CC builtin/merge-file.o
CC builtin/merge-index.o
CC builtin/merge-ours.o
CC builtin/merge-recursive.o
CC builtin/merge-tree.o
CC builtin/merge.o
CC builtin/mktag.o
CC builtin/mktree.o
CC builtin/multi-pack-index.o
CC builtin/mv.o
CC builtin/name-rev.o
CC builtin/notes.o
CC builtin/pack-objects.o
CC builtin/pack-redundant.o
CC builtin/pack-refs.o
CC builtin/patch-id.o
CC builtin/prune-packed.o
CC builtin/prune.o
CC builtin/pull.o
CC builtin/push.o
CC builtin/range-diff.o
CC builtin/read-tree.o
CC builtin/rebase.o
CC builtin/receive-pack.o
CC builtin/reflog.o
CC builtin/remote-ext.o
CC builtin/remote-fd.o
CC builtin/remote.o
CC builtin/repack.o
CC builtin/replace.o
CC builtin/rerere.o
CC builtin/reset.o
CC builtin/rev-list.o
CC builtin/rev-parse.o
CC builtin/revert.o
CC builtin/rm.o
CC builtin/send-pack.o
CC builtin/shortlog.o
CC builtin/show-branch.o
CC builtin/show-index.o
CC builtin/show-ref.o
CC builtin/sparse-checkout.o
CC builtin/stash.o
CC builtin/stripspace.o
CC builtin/submodule--helper.o
CC builtin/symbolic-ref.o
CC builtin/tag.o
CC builtin/unpack-file.o
CC builtin/unpack-objects.o
CC builtin/update-index.o
CC builtin/update-ref.o
CC builtin/update-server-info.o
CC builtin/upload-archive.o
CC builtin/upload-pack.o
CC builtin/var.o
CC builtin/verify-commit.o
CC builtin/verify-pack.o
CC builtin/verify-tag.o
CC builtin/worktree.o
CC builtin/write-tree.o
GEN git-mergetool--lib
GEN git-sh-i18n
GEN git-sh-setup
CC attr.o
CC help.o
CC version.o
AR xdiff/lib.a
AR reftable/libreftable.a
GEN git-bisect
GEN git-difftool--helper
GEN git-filter-branch
GEN git-merge-octopus
GEN git-merge-one-file
GEN git-merge-resolve
GEN git-mergetool
GEN git-quiltimport
GEN git-request-pull
GEN git-submodule
GEN git-web--browse
GEN GIT-PERL-HEADER
GEN git-p4
CC builtin/bugreport.o
CC builtin/help.o
GEN git-add--interactive
GEN git-archimport
GEN git-cvsexportcommit
GEN git-cvsimport
GEN git-cvsserver
GEN git-send-email
GEN git-svn
AR libgit.a
LINK git-daemon
LINK git-http-backend
LINK git-imap-send
LINK git-sh-i18n--envsubst
LINK git-shell
LINK git-http-fetch
LINK git-http-push
LINK git-remote-http
LINK git
LN/CP git-remote-https
LN/CP git-remote-ftp
LN/CP git-remote-ftps
BUILTIN git-add
BUILTIN git-am
BUILTIN git-apply
BUILTIN git-annotate
BUILTIN git-archive
BUILTIN git-bisect--helper
BUILTIN git-blame
BUILTIN git-branch
BUILTIN git-bugreport
BUILTIN git-bundle
BUILTIN git-cat-file
BUILTIN git-check-attr
BUILTIN git-check-ignore
BUILTIN git-check-mailmap
BUILTIN git-check-ref-format
BUILTIN git-checkout--worker
BUILTIN git-checkout-index
BUILTIN git-checkout
BUILTIN git-clean
BUILTIN git-clone
BUILTIN git-column
BUILTIN git-commit-graph
BUILTIN git-commit
BUILTIN git-commit-tree
BUILTIN git-config
BUILTIN git-count-objects
BUILTIN git-credential-cache--daemon
BUILTIN git-credential-cache
BUILTIN git-credential-store
BUILTIN git-credential
BUILTIN git-describe
BUILTIN git-diff-index
BUILTIN git-diff-files
BUILTIN git-diff-tree
BUILTIN git-diff
BUILTIN git-difftool
BUILTIN git-env--helper
BUILTIN git-fast-export
BUILTIN git-fast-import
BUILTIN git-fetch-pack
BUILTIN git-fetch
BUILTIN git-fmt-merge-msg
BUILTIN git-for-each-ref
BUILTIN git-fsck
BUILTIN git-for-each-repo
BUILTIN git-gc
BUILTIN git-get-tar-commit-id
BUILTIN git-grep
BUILTIN git-hash-object
BUILTIN git-help
BUILTIN git-hook
BUILTIN git-index-pack
BUILTIN git-init-db
BUILTIN git-interpret-trailers
BUILTIN git-ls-files
BUILTIN git-log
BUILTIN git-ls-remote
BUILTIN git-ls-tree
BUILTIN git-mailinfo
BUILTIN git-mailsplit
BUILTIN git-merge-base
BUILTIN git-merge-file
BUILTIN git-merge-index
BUILTIN git-merge-ours
BUILTIN git-merge-recursive
BUILTIN git-merge-tree
BUILTIN git-merge
BUILTIN git-mktag
BUILTIN git-mktree
BUILTIN git-multi-pack-index
BUILTIN git-mv
BUILTIN git-name-rev
BUILTIN git-notes
BUILTIN git-pack-objects
BUILTIN git-pack-redundant
BUILTIN git-pack-refs
BUILTIN git-patch-id
BUILTIN git-prune-packed
BUILTIN git-prune
BUILTIN git-pull
BUILTIN git-push
BUILTIN git-read-tree
BUILTIN git-range-diff
BUILTIN git-rebase
BUILTIN git-receive-pack
BUILTIN git-reflog
BUILTIN git-remote-ext
BUILTIN git-remote-fd
BUILTIN git-repack
BUILTIN git-remote
BUILTIN git-replace
BUILTIN git-rerere
BUILTIN git-reset
BUILTIN git-rev-list
BUILTIN git-rev-parse
BUILTIN git-revert
BUILTIN git-rm
BUILTIN git-send-pack
BUILTIN git-shortlog
BUILTIN git-show-branch
BUILTIN git-show-index
BUILTIN git-show-ref
BUILTIN git-sparse-checkout
BUILTIN git-stash
BUILTIN git-stripspace
BUILTIN git-submodule--helper
BUILTIN git-symbolic-ref
BUILTIN git-tag
BUILTIN git-unpack-file
BUILTIN git-update-index
BUILTIN git-unpack-objects
BUILTIN git-update-server-info
BUILTIN git-update-ref
BUILTIN git-upload-pack
BUILTIN git-upload-archive
BUILTIN git-var
BUILTIN git-verify-commit
BUILTIN git-verify-pack
BUILTIN git-verify-tag
BUILTIN git-worktree
BUILTIN git-write-tree
BUILTIN git-cherry
BUILTIN git-cherry-pick
BUILTIN git-format-patch
BUILTIN git-fsck-objects
BUILTIN git-init
BUILTIN git-maintenance
BUILTIN git-merge-subtree
BUILTIN git-restore
BUILTIN git-show
BUILTIN git-stage
BUILTIN git-status
BUILTIN git-switch
BUILTIN git-whatchanged
SUBDIR git-gui
GITGUI_VERSION = 0.21.0.99.gdf4f9
* new locations or Tcl/Tk interpreter
MSGFMT po/de.msg MSGFMT po/bg.msg MSGFMT po/el.msg MSGFMT po/fr.msg MSGFMT po/hu.msg 565 translated.
579 translated.
520 translated.
MSGFMT po/it.msg MSGFMT po/ja.msg 381 translated, 4 fuzzy, 6 untranslated.
MSGFMT po/nb.msg MSGFMT po/pt_br.msg 514 translated.
MSGFMT po/pt_pt.msg 519 translated, 1 untranslated.
MSGFMT po/ru.msg 546 translated, 1 untranslated.
474 translated, 39 untranslated.
MSGFMT po/sv.msg MSGFMT po/vi.msg 550 translated.
MSGFMT po/zh_cn.msg 520 translated.
579 translated.
GEN git-gui
INDEX lib/
366 translated, 7 fuzzy, 17 untranslated.
547 translated.
543 translated.
SUBDIR gitk-git
Generating catalog po/bg.msg
msgfmt --statistics --tcl po/bg.po -l bg -d po/
Generating catalog po/ca.msg
msgfmt --statistics --tcl po/ca.po -l ca -d po/
Generating catalog po/de.msg
msgfmt --statistics --tcl po/de.po -l de -d po/
Generating catalog po/es.msg
* new Tcl/Tk interpreter location
msgfmt --statistics --tcl po/es.po -l es -d po/
317 translated messages.
307 translated messages.
Generating catalog po/fr.msg
184 translated messages, 46 fuzzy translations, 77 untranslated messages.
msgfmt --statistics --tcl po/fr.po -l fr -d po/
307 translated messages.
Generating catalog po/it.msg
msgfmt --statistics --tcl po/it.po -l it -d po/
Generating catalog po/ja.msg
msgfmt --statistics --tcl po/ja.po -l ja -d po/
Generating catalog po/hu.msg
msgfmt --statistics --tcl po/hu.po -l hu -d po/
311 translated messages.
Generating catalog po/pt_br.msg
274 translated messages, 17 fuzzy translations, 16 untranslated messages.
311 translated messages.
msgfmt --statistics --tcl po/pt_br.po -l pt_br -d po/
Generating catalog po/pt_pt.msg
msgfmt --statistics --tcl po/pt_pt.po -l pt_pt -d po/
277 translated messages, 18 fuzzy translations, 12 untranslated messages.
Generating catalog po/ru.msg
msgfmt --statistics --tcl po/ru.po -l ru -d po/
Generating catalog po/sv.msg
279 translated messages, 16 fuzzy translations, 12 untranslated messages.
msgfmt --statistics --tcl po/sv.po -l sv -d po/
Generating catalog po/vi.msg
311 translated messages.
msgfmt --statistics --tcl po/vi.po -l vi -d po/
Generating catalog po/zh_cn.msg
317 translated messages.
msgfmt --statistics --tcl po/zh_cn.po -l zh_cn -d po/
GEN gitk-wish
311 translated messages.
307 translated messages.
317 translated messages.
SUBDIR templates
MKDIR -p po/build/locale/bg/LC_MESSAGES
MSGFMT po/build/locale/bg/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/ca/LC_MESSAGES
MSGFMT po/build/locale/ca/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/de/LC_MESSAGES
MSGFMT po/build/locale/de/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/el/LC_MESSAGES
MSGFMT po/build/locale/el/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/es/LC_MESSAGES
MSGFMT po/build/locale/es/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/fr/LC_MESSAGES
MSGFMT po/build/locale/fr/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/id/LC_MESSAGES
MSGFMT po/build/locale/id/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/is/LC_MESSAGES
MSGFMT po/build/locale/is/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/it/LC_MESSAGES
MSGFMT po/build/locale/it/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/ko/LC_MESSAGES
MSGFMT po/build/locale/ko/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/pl/LC_MESSAGES
MSGFMT po/build/locale/pl/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/pt_PT/LC_MESSAGES
MSGFMT po/build/locale/pt_PT/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/ru/LC_MESSAGES
MSGFMT po/build/locale/ru/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/sv/LC_MESSAGES
MSGFMT po/build/locale/sv/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/tr/LC_MESSAGES
MSGFMT po/build/locale/tr/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/vi/LC_MESSAGES
MSGFMT po/build/locale/vi/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/zh_CN/LC_MESSAGES
MSGFMT po/build/locale/zh_CN/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/zh_TW/LC_MESSAGES
MSGFMT po/build/locale/zh_TW/LC_MESSAGES/git.mo
MKDIR -p perl/build/lib
GEN perl/build/lib/Git.pm
MKDIR -p perl/build/lib/Git
GEN perl/build/lib/Git/IndexInfo.pm
GEN perl/build/lib/Git/I18N.pm
GEN perl/build/lib/Git/LoadCPAN.pm
GEN perl/build/lib/Git/Packet.pm
GEN perl/build/lib/Git/SVN.pm
MKDIR -p perl/build/lib/Git/LoadCPAN
GEN perl/build/lib/Git/LoadCPAN/Error.pm
MKDIR -p perl/build/lib/Git/SVN
GEN perl/build/lib/Git/SVN/Fetcher.pm
GEN perl/build/lib/Git/SVN/GlobSpec.pm
GEN perl/build/lib/Git/SVN/Log.pm
GEN perl/build/lib/Git/SVN/Editor.pm
GEN perl/build/lib/Git/SVN/Migration.pm
GEN perl/build/lib/Git/SVN/Prompt.pm
GEN perl/build/lib/Git/SVN/Ra.pm
GEN perl/build/lib/Git/SVN/Utils.pm
MKDIR -p perl/build/lib/Git/LoadCPAN/Mail
GEN perl/build/lib/Git/LoadCPAN/Mail/Address.pm
MKDIR -p perl/build/lib/Git/SVN/Memoize
GEN perl/build/lib/Git/SVN/Memoize/YAML.pm
MKDIR -p perl/build/lib/FromCPAN
GEN perl/build/lib/FromCPAN/Error.pm
MKDIR -p perl/build/lib/FromCPAN/Mail
GEN perl/build/lib/FromCPAN/Mail/Address.pm
CC t/helper/test-fake-ssh.o
CC reftable/basics_test.o
CC reftable/block_test.o
CC reftable/dump.o
CC reftable/merged_test.o
CC reftable/pq_test.o
CC reftable/record_test.o
CC reftable/readwrite_test.o
CC reftable/refname_test.o
CC reftable/stack_test.o
CC reftable/test_framework.o
CC reftable/tree_test.o
CC t/helper/test-tool.o
CC t/helper/test-advise.o
CC t/helper/test-bitmap.o
CC t/helper/test-bloom.o
CC t/helper/test-chmtime.o
CC t/helper/test-config.o
CC t/helper/test-crontab.o
CC t/helper/test-csprng.o
CC t/helper/test-ctype.o
CC t/helper/test-date.o
CC t/helper/test-delta.o
CC t/helper/test-dir-iterator.o
CC t/helper/test-drop-caches.o
CC t/helper/test-dump-cache-tree.o
CC t/helper/test-dump-fsmonitor.o
CC t/helper/test-dump-split-index.o
CC t/helper/test-dump-untracked-cache.o
CC t/helper/test-example-decorate.o
CC t/helper/test-fast-rebase.o
CC t/helper/test-genrandom.o
CC t/helper/test-genzeros.o
CC t/helper/test-getcwd.o
CC t/helper/test-hash-speed.o
CC t/helper/test-hash.o
CC t/helper/test-hashmap.o
CC t/helper/test-index-version.o
CC t/helper/test-json-writer.o
CC t/helper/test-lazy-init-name-hash.o
CC t/helper/test-match-trees.o
CC t/helper/test-mergesort.o
CC t/helper/test-mktemp.o
CC t/helper/test-oid-array.o
CC t/helper/test-oidmap.o
CC t/helper/test-oidtree.o
CC t/helper/test-online-cpus.o
CC t/helper/test-parse-options.o
CC t/helper/test-parse-pathspec-file.o
CC t/helper/test-partial-clone.o
CC t/helper/test-path-utils.o
CC t/helper/test-pcre2-config.o
CC t/helper/test-pkt-line.o
CC t/helper/test-prio-queue.o
CC t/helper/test-proc-receive.o
CC t/helper/test-progress.o
CC t/helper/test-reach.o
CC t/helper/test-read-cache.o
CC t/helper/test-read-graph.o
CC t/helper/test-read-midx.o
CC t/helper/test-ref-store.o
CC t/helper/test-reftable.o
CC t/helper/test-regex.o
CC t/helper/test-repository.o
CC t/helper/test-revision-walking.o
CC t/helper/test-run-command.o
CC t/helper/test-scrap-cache-tree.o
CC t/helper/test-serve-v2.o
CC t/helper/test-sha1.o
CC t/helper/test-sha256.o
CC t/helper/test-sigchain.o
CC t/helper/test-simple-ipc.o
CC t/helper/test-strcmp-offset.o
CC t/helper/test-string-list.o
CC t/helper/test-submodule-config.o
CC t/helper/test-submodule-nested-repo-config.o
CC t/helper/test-subprocess.o
CC t/helper/test-trace2.o
CC t/helper/test-urlmatch-normalization.o
CC t/helper/test-userdiff.o
CC t/helper/test-wildmatch.o
CC t/helper/test-windows-named-pipe.o
CC t/helper/test-write-cache.o
CC t/helper/test-xml-encode.o
MKDIR -p bin-wrappers
GEN bin-wrappers/git
GEN bin-wrappers/git-receive-pack
GEN bin-wrappers/git-shell
GEN bin-wrappers/git-upload-archive
GEN bin-wrappers/git-upload-pack
GEN bin-wrappers/git-cvsserver
GEN bin-wrappers/test-fake-ssh
GEN bin-wrappers/test-tool
AR reftable/libreftable_test.a
LINK t/helper/test-fake-ssh
LINK t/helper/test-tool
ek@apok:~/src/git ((4b6846d9dc...)|BISECTING)$ make prefix="$HOME/mygit" install
SUBDIR git-gui
SUBDIR gitk-git
SUBDIR templates
install -d -m 755 '/home/ek/mygit/bin'
install -d -m 755 '/home/ek/mygit/libexec/git-core'
install git-daemon git-http-backend git-imap-send git-sh-i18n--envsubst git-shell git-http-fetch git-http-push git-remote-http git-remote-https git-remote-ftp git-remote-ftps '/home/ek/mygit/libexec/git-core'
install git-bisect git-difftool--helper git-filter-branch git-merge-octopus git-merge-one-file git-merge-resolve git-mergetool git-quiltimport git-request-pull git-submodule git-web--browse git-add--interactive git-archimport git-cvsexportcommit git-cvsimport git-cvsserver git-send-email git-svn git-p4 git-instaweb '/home/ek/mygit/libexec/git-core'
install -m 644 git-mergetool--lib git-sh-i18n git-sh-setup '/home/ek/mygit/libexec/git-core'
install git git-receive-pack git-shell git-upload-archive git-upload-pack '/home/ek/mygit/bin'
install git-cvsserver '/home/ek/mygit/bin'
make -C templates DESTDIR='' install
make[1]: Entering directory '/home/ek/src/git/templates'
install -d -m 755 '/home/ek/mygit/share/git-core/templates'
(cd blt && tar cf - .) | \
(cd '/home/ek/mygit/share/git-core/templates' && umask 022 && tar xof -)
make[1]: Leaving directory '/home/ek/src/git/templates'
install -d -m 755 '/home/ek/mygit/libexec/git-core/mergetools'
install -m 644 mergetools/* '/home/ek/mygit/libexec/git-core/mergetools'
install -d -m 755 '/home/ek/mygit/share/locale'
(cd po/build/locale && tar cf - .) | \
(cd '/home/ek/mygit/share/locale' && umask 022 && tar xof -)
install -d -m 755 '/home/ek/mygit/share/perl5'
(cd perl/build/lib && tar cf - .) | \
(cd '/home/ek/mygit/share/perl5' && umask 022 && tar xof -)
make -C gitweb install
make[1]: Entering directory '/home/ek/src/git/gitweb'
make[2]: Entering directory '/home/ek/src/git'
make[2]: 'GIT-VERSION-FILE' is up to date.
make[2]: Leaving directory '/home/ek/src/git'
GEN gitweb.cgi
GEN static/gitweb.js
install -d -m 755 '/home/ek/mygit/share/gitweb'
install -m 755 gitweb.cgi '/home/ek/mygit/share/gitweb'
install -d -m 755 '/home/ek/mygit/share/gitweb/static'
install -m 644 static/gitweb.js static/gitweb.css static/git-logo.png static/git-favicon.png '/home/ek/mygit/share/gitweb/static'
make[1]: Leaving directory '/home/ek/src/git/gitweb'
make -C gitk-git install
make[1]: Entering directory '/home/ek/src/git/gitk-git'
install -d -m 755 '/home/ek/mygit/bin'
install -m 755 gitk-wish '/home/ek/mygit/bin'/gitk
install -d -m 755 '/home/ek/mygit/share/gitk/lib/msgs'
install -m 644 po/bg.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/ca.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/de.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/es.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/fr.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/hu.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/it.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/ja.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/pt_br.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/pt_pt.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/ru.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/sv.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/vi.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/zh_cn.msg '/home/ek/mygit/share/gitk/lib/msgs' && true
make[1]: Leaving directory '/home/ek/src/git/gitk-git'
make -C git-gui gitexecdir='/home/ek/mygit/libexec/git-core' install
make[1]: Entering directory '/home/ek/src/git/git-gui'
DEST /home/ek/mygit/libexec/git-core
INSTALL 755 git-gui
INSTALL 755 git-gui--askpass
LINK git-citool -> git-gui
DEST /home/ek/mygit/share/git-gui/lib
INSTALL 644 tclIndex
INSTALL 644 about.tcl
INSTALL 644 blame.tcl
INSTALL 644 branch_checkout.tcl
INSTALL 644 branch_create.tcl
INSTALL 644 branch_delete.tcl
INSTALL 644 branch_rename.tcl
INSTALL 644 branch.tcl
INSTALL 644 browser.tcl
INSTALL 644 checkout_op.tcl
INSTALL 644 choose_font.tcl
INSTALL 644 choose_repository.tcl
INSTALL 644 choose_rev.tcl
INSTALL 644 chord.tcl
INSTALL 644 class.tcl
INSTALL 644 commit.tcl
INSTALL 644 console.tcl
INSTALL 644 database.tcl
INSTALL 644 date.tcl
INSTALL 644 diff.tcl
INSTALL 644 encoding.tcl
INSTALL 644 error.tcl
INSTALL 644 index.tcl
INSTALL 644 line.tcl
INSTALL 644 logo.tcl
INSTALL 644 merge.tcl
INSTALL 644 mergetool.tcl
INSTALL 644 option.tcl
INSTALL 644 remote_add.tcl
INSTALL 644 remote_branch_delete.tcl
INSTALL 644 remote.tcl
INSTALL 644 search.tcl
INSTALL 644 shortcut.tcl
INSTALL 644 spellcheck.tcl
INSTALL 644 sshkey.tcl
INSTALL 644 status_bar.tcl
INSTALL 644 themed.tcl
INSTALL 644 tools_dlg.tcl
INSTALL 644 tools.tcl
INSTALL 644 transport.tcl
INSTALL 644 win32.tcl
INSTALL 644 git-gui.ico
INSTALL 644 win32_shortcut.js
DEST /home/ek/mygit/share/git-gui/lib/msgs
INSTALL 644 bg.msg
INSTALL 644 de.msg
INSTALL 644 el.msg
INSTALL 644 fr.msg
INSTALL 644 hu.msg
INSTALL 644 it.msg
INSTALL 644 ja.msg
INSTALL 644 nb.msg
INSTALL 644 pt_br.msg
INSTALL 644 pt_pt.msg
INSTALL 644 ru.msg
INSTALL 644 sv.msg
INSTALL 644 vi.msg
INSTALL 644 zh_cn.msg
make[1]: Leaving directory '/home/ek/src/git/git-gui'
bindir=$(cd '/home/ek/mygit/bin' && pwd) && \
execdir=$(cd '/home/ek/mygit/libexec/git-core' && pwd) && \
destdir_from_execdir_SQ=$(echo 'libexec/git-core' | sed -e 's|[^/][^/]*|..|g') && \
{ test "$bindir/" = "$execdir/" || \
for p in git git-shell git-cvsserver; do \
rm -f "$execdir/$p" && \
test -n "" && \
ln -s "$destdir_from_execdir_SQ/bin/$p" "$execdir/$p" || \
{ test -z "" && \
ln "$bindir/$p" "$execdir/$p" 2>/dev/null || \
cp "$bindir/$p" "$execdir/$p" || exit; } \
done; \
} && \
for p in git-receive-pack git-upload-archive git-upload-pack; do \
rm -f "$bindir/$p" && \
test -n "" && \
ln -s "git" "$bindir/$p" || \
{ test -z "" && \
ln "$bindir/git" "$bindir/$p" 2>/dev/null || \
ln -s "git" "$bindir/$p" 2>/dev/null || \
cp "$bindir/git" "$bindir/$p" || exit; }; \
done && \
for p in git-add git-am git-annotate git-apply git-archive git-bisect--helper git-blame git-branch git-bugreport git-bundle git-cat-file git-check-attr git-check-ignore git-check-mailmap git-check-ref-format git-checkout--worker git-checkout-index git-checkout git-clean git-clone git-column git-commit-graph git-commit-tree git-commit git-config git-count-objects git-credential-cache--daemon git-credential-cache git-credential-store git-credential git-describe git-diff-files git-diff-index git-diff-tree git-diff git-difftool git-env--helper git-fast-export git-fast-import git-fetch-pack git-fetch git-fmt-merge-msg git-for-each-ref git-for-each-repo git-fsck git-gc git-get-tar-commit-id git-grep git-hash-object git-help git-hook git-index-pack git-init-db git-interpret-trailers git-log git-ls-files git-ls-remote git-ls-tree git-mailinfo git-mailsplit git-merge-base git-merge-file git-merge-index git-merge-ours git-merge-recursive git-merge-tree git-merge git-mktag git-mktree git-multi-pack-index git-mv git-name-rev git-notes git-pack-objects git-pack-redundant git-pack-refs git-patch-id git-prune-packed git-prune git-pull git-push git-range-diff git-read-tree git-rebase git-receive-pack git-reflog git-remote-ext git-remote-fd git-remote git-repack git-replace git-rerere git-reset git-rev-list git-rev-parse git-revert git-rm git-send-pack git-shortlog git-show-branch git-show-index git-show-ref git-sparse-checkout git-stash git-stripspace git-submodule--helper git-symbolic-ref git-tag git-unpack-file git-unpack-objects git-update-index git-update-ref git-update-server-info git-upload-archive git-upload-pack git-var git-verify-commit git-verify-pack git-verify-tag git-worktree git-write-tree git-cherry git-cherry-pick git-format-patch git-fsck-objects git-init git-maintenance git-merge-subtree git-restore git-show git-stage git-status git-switch git-whatchanged; do \
rm -f "$execdir/$p" && \
if test -z ""; \
then \
test -n "" && \
ln -s "$destdir_from_execdir_SQ/bin/git" "$execdir/$p" || \
{ test -z "" && \
ln "$execdir/git" "$execdir/$p" 2>/dev/null || \
ln -s "git" "$execdir/$p" 2>/dev/null || \
cp "$execdir/git" "$execdir/$p" || exit; }; \
fi \
done && \
remote_curl_aliases="git-remote-https git-remote-ftp git-remote-ftps" && \
for p in $remote_curl_aliases; do \
rm -f "$execdir/$p" && \
test -n "" && \
ln -s "git-remote-http" "$execdir/$p" || \
{ test -z "" && \
ln "$execdir/git-remote-http" "$execdir/$p" 2>/dev/null || \
ln -s "git-remote-http" "$execdir/$p" 2>/dev/null || \
cp "$execdir/git-remote-http" "$execdir/$p" || exit; } \
done
ek@apok:~/src/git ((4b6846d9dc...)|BISECTING)$ pushd ~/tmp
~/tmp ~/src/git
ek@apok:~/tmp$ PATH="$HOME/mygit/bin:$PATH" GIT_SSH_COMMAND='{ pid="$(ps -o ppid:1= -p "$$")"; ps -o pid:1=,cmd= -p "$pid"; awk -v RS=\\0 "/^GIT_CONFIG/ { print \" \" \$0 }" "/proc/$pid/environ"; } 1>&2; ssh' GIT_CONFIG_COUNT=1 GIT_CONFIG_KEY_0=foo.bar GIT_CONFIG_VALUE_0=baz git clone --recurse-submodules git@github.com:EliahKagan/has-nested-submodule.git
Cloning into 'has-nested-submodule'...
1057546 git clone --recurse-submodules git@github.com:EliahKagan/has-nested-submodule.git
GIT_CONFIG_COUNT=1
GIT_CONFIG_KEY_0=foo.bar
GIT_CONFIG_VALUE_0=baz
remote: Enumerating objects: 4, done.
remote: Counting objects: 100% (4/4), done.
remote: Compressing objects: 100% (4/4), done.
remote: Total 4 (delta 0), reused 4 (delta 0), pack-reused 0
Receiving objects: 100% (4/4), done.
Submodule 'has-submodule' (git@github.com:EliahKagan/has-submodule.git) registered for path 'has-submodule'
Cloning into '/home/ek/tmp/has-nested-submodule/has-submodule'...
1057589 /home/ek/mygit/libexec/git-core/git clone --no-checkout --progress --separate-git-dir /home/ek/tmp/has-nested-submodule/.git/modules/has-submodule --no-single-branch -- git@github.com:EliahKagan/has-submodule.git /home/ek/tmp/has-nested-submodule/has-submodule
GIT_CONFIG_COUNT=1
GIT_CONFIG_KEY_0=foo.bar
GIT_CONFIG_VALUE_0=baz
remote: Enumerating objects: 4, done.
remote: Counting objects: 100% (4/4), done.
remote: Compressing objects: 100% (4/4), done.
remote: Total 4 (delta 0), reused 4 (delta 0), pack-reused 0
Receiving objects: 100% (4/4), done.
Submodule path 'has-submodule': checked out '8de4a40d782ddfd338f2ada312714d60541c6f80'
Submodule 'trivial' (git@github.com:EliahKagan/trivial.git) registered for path 'has-submodule/trivial'
Cloning into '/home/ek/tmp/has-nested-submodule/has-submodule/trivial'...
1057615 /home/ek/mygit/libexec/git-core/git clone --no-checkout --progress --separate-git-dir /home/ek/tmp/has-nested-submodule/.git/modules/has-submodule/modules/trivial --no-single-branch -- git@github.com:EliahKagan/trivial.git /home/ek/tmp/has-nested-submodule/has-submodule/trivial
GIT_CONFIG_KEY_0=foo.bar
GIT_CONFIG_PARAMETERS=
GIT_CONFIG_VALUE_0=baz
remote: Enumerating objects: 3, done.
remote: Counting objects: 100% (3/3), done.
remote: Compressing objects: 100% (2/2), done.
remote: Total 3 (delta 0), reused 3 (delta 0), pack-reused 0
Receiving objects: 100% (3/3), done.
Submodule path 'has-submodule/trivial': checked out '656a18dc1e48e035a05a72011a62bca5f41fa07e'
ek@apok:~/tmp$ rm -rf has-nested-submodule/
ek@apok:~/tmp$ popd
~/src/git
ek@apok:~/src/git ((4b6846d9dc...)|BISECTING)$ rm -r ~/mygit
ek@apok:~/src/git ((4b6846d9dc...)|BISECTING)$ gix clean -xde
removing .depend/ (🗑️)
removing GIT-BUILD-OPTIONS (🗑️)
removing GIT-CFLAGS (🗑️)
removing GIT-LDFLAGS (🗑️)
removing GIT-PERL-DEFINES (🗑️)
removing GIT-PERL-HEADER (🗑️)
removing GIT-PREFIX (🗑️)
removing GIT-PYTHON-VARS (🗑️)
removing GIT-SCRIPT-DEFINES (🗑️)
removing GIT-USER-AGENT (🗑️)
removing GIT-VERSION-FILE (🗑️)
removing abspath.o (🗑️)
removing add-interactive.o (🗑️)
removing add-patch.o (🗑️)
removing advice.o (🗑️)
removing alias.o (🗑️)
removing alloc.o (🗑️)
removing apply.o (🗑️)
removing archive-tar.o (🗑️)
removing archive-zip.o (🗑️)
removing archive.o (🗑️)
removing attr.o (🗑️)
removing base85.o (🗑️)
removing bin-wrappers/ (🗑️)
removing bisect.o (🗑️)
removing blame.o (🗑️)
removing blob.o (🗑️)
removing bloom.o (🗑️)
removing branch.o (🗑️)
removing builtin/.depend/ (🗑️)
removing builtin/add.o (🗑️)
removing builtin/am.o (🗑️)
removing builtin/annotate.o (🗑️)
removing builtin/apply.o (🗑️)
removing builtin/archive.o (🗑️)
removing builtin/bisect--helper.o (🗑️)
removing builtin/blame.o (🗑️)
removing builtin/branch.o (🗑️)
removing builtin/bugreport.o (🗑️)
removing builtin/bundle.o (🗑️)
removing builtin/cat-file.o (🗑️)
removing builtin/check-attr.o (🗑️)
removing builtin/check-ignore.o (🗑️)
removing builtin/check-mailmap.o (🗑️)
removing builtin/check-ref-format.o (🗑️)
removing builtin/checkout--worker.o (🗑️)
removing builtin/checkout-index.o (🗑️)
removing builtin/checkout.o (🗑️)
removing builtin/clean.o (🗑️)
removing builtin/clone.o (🗑️)
removing builtin/column.o (🗑️)
removing builtin/commit-graph.o (🗑️)
removing builtin/commit-tree.o (🗑️)
removing builtin/commit.o (🗑️)
removing builtin/config.o (🗑️)
removing builtin/count-objects.o (🗑️)
removing builtin/credential-cache--daemon.o (🗑️)
removing builtin/credential-cache.o (🗑️)
removing builtin/credential-store.o (🗑️)
removing builtin/credential.o (🗑️)
removing builtin/describe.o (🗑️)
removing builtin/diff-files.o (🗑️)
removing builtin/diff-index.o (🗑️)
removing builtin/diff-tree.o (🗑️)
removing builtin/diff.o (🗑️)
removing builtin/difftool.o (🗑️)
removing builtin/env--helper.o (🗑️)
removing builtin/fast-export.o (🗑️)
removing builtin/fast-import.o (🗑️)
removing builtin/fetch-pack.o (🗑️)
removing builtin/fetch.o (🗑️)
removing builtin/fmt-merge-msg.o (🗑️)
removing builtin/for-each-ref.o (🗑️)
removing builtin/for-each-repo.o (🗑️)
removing builtin/fsck.o (🗑️)
removing builtin/gc.o (🗑️)
removing builtin/get-tar-commit-id.o (🗑️)
removing builtin/grep.o (🗑️)
removing builtin/hash-object.o (🗑️)
removing builtin/help.o (🗑️)
removing builtin/hook.o (🗑️)
removing builtin/index-pack.o (🗑️)
removing builtin/init-db.o (🗑️)
removing builtin/interpret-trailers.o (🗑️)
removing builtin/log.o (🗑️)
removing builtin/ls-files.o (🗑️)
removing builtin/ls-remote.o (🗑️)
removing builtin/ls-tree.o (🗑️)
removing builtin/mailinfo.o (🗑️)
removing builtin/mailsplit.o (🗑️)
removing builtin/merge-base.o (🗑️)
removing builtin/merge-file.o (🗑️)
removing builtin/merge-index.o (🗑️)
removing builtin/merge-ours.o (🗑️)
removing builtin/merge-recursive.o (🗑️)
removing builtin/merge-tree.o (🗑️)
removing builtin/merge.o (🗑️)
removing builtin/mktag.o (🗑️)
removing builtin/mktree.o (🗑️)
removing builtin/multi-pack-index.o (🗑️)
removing builtin/mv.o (🗑️)
removing builtin/name-rev.o (🗑️)
removing builtin/notes.o (🗑️)
removing builtin/pack-objects.o (🗑️)
removing builtin/pack-redundant.o (🗑️)
removing builtin/pack-refs.o (🗑️)
removing builtin/patch-id.o (🗑️)
removing builtin/prune-packed.o (🗑️)
removing builtin/prune.o (🗑️)
removing builtin/pull.o (🗑️)
removing builtin/push.o (🗑️)
removing builtin/range-diff.o (🗑️)
removing builtin/read-tree.o (🗑️)
removing builtin/rebase.o (🗑️)
removing builtin/receive-pack.o (🗑️)
removing builtin/reflog.o (🗑️)
removing builtin/remote-ext.o (🗑️)
removing builtin/remote-fd.o (🗑️)
removing builtin/remote.o (🗑️)
removing builtin/repack.o (🗑️)
removing builtin/replace.o (🗑️)
removing builtin/rerere.o (🗑️)
removing builtin/reset.o (🗑️)
removing builtin/rev-list.o (🗑️)
removing builtin/rev-parse.o (🗑️)
removing builtin/revert.o (🗑️)
removing builtin/rm.o (🗑️)
removing builtin/send-pack.o (🗑️)
removing builtin/shortlog.o (🗑️)
removing builtin/show-branch.o (🗑️)
removing builtin/show-index.o (🗑️)
removing builtin/show-ref.o (🗑️)
removing builtin/sparse-checkout.o (🗑️)
removing builtin/stash.o (🗑️)
removing builtin/stripspace.o (🗑️)
removing builtin/submodule--helper.o (🗑️)
removing builtin/symbolic-ref.o (🗑️)
removing builtin/tag.o (🗑️)
removing builtin/unpack-file.o (🗑️)
removing builtin/unpack-objects.o (🗑️)
removing builtin/update-index.o (🗑️)
removing builtin/update-ref.o (🗑️)
removing builtin/update-server-info.o (🗑️)
removing builtin/upload-archive.o (🗑️)
removing builtin/upload-pack.o (🗑️)
removing builtin/var.o (🗑️)
removing builtin/verify-commit.o (🗑️)
removing builtin/verify-pack.o (🗑️)
removing builtin/verify-tag.o (🗑️)
removing builtin/worktree.o (🗑️)
removing builtin/write-tree.o (🗑️)
removing bulk-checkin.o (🗑️)
removing bundle.o (🗑️)
removing cache-tree.o (🗑️)
removing cbtree.o (🗑️)
removing chdir-notify.o (🗑️)
removing checkout.o (🗑️)
removing chunk-format.o (🗑️)
removing color.o (🗑️)
removing column.o (🗑️)
removing combine-diff.o (🗑️)
removing command-list.h (🗑️)
removing commit-graph.o (🗑️)
removing commit-reach.o (🗑️)
removing commit.o (🗑️)
removing common-main.o (🗑️)
removing compat/.depend/ (🗑️)
removing compat/fopen.o (🗑️)
removing compat/linux/.depend/ (🗑️)
removing compat/linux/procinfo.o (🗑️)
removing compat/obstack.o (🗑️)
removing compat/qsort_s.o (🗑️)
removing compat/simple-ipc/.depend/ (🗑️)
removing compat/simple-ipc/ipc-shared.o (🗑️)
removing compat/simple-ipc/ipc-unix-socket.o (🗑️)
removing compat/strlcpy.o (🗑️)
removing compat/terminal.o (🗑️)
removing compat/zlib-uncompress2.o (🗑️)
removing config-list.h (🗑️)
removing config.o (🗑️)
removing connect.o (🗑️)
removing connected.o (🗑️)
removing contrib/scalar/.depend/ (🗑️)
removing convert.o (🗑️)
removing copy.o (🗑️)
removing credential.o (🗑️)
removing csum-file.o (🗑️)
removing ctype.o (🗑️)
removing daemon.o (🗑️)
removing date.o (🗑️)
removing decorate.o (🗑️)
removing delta-islands.o (🗑️)
removing diff-delta.o (🗑️)
removing diff-lib.o (🗑️)
removing diff-merges.o (🗑️)
removing diff-no-index.o (🗑️)
removing diff.o (🗑️)
removing diffcore-break.o (🗑️)
removing diffcore-delta.o (🗑️)
removing diffcore-order.o (🗑️)
removing diffcore-pickaxe.o (🗑️)
removing diffcore-rename.o (🗑️)
removing diffcore-rotate.o (🗑️)
removing dir-iterator.o (🗑️)
removing dir.o (🗑️)
removing editor.o (🗑️)
removing entry.o (🗑️)
removing environment.o (🗑️)
removing ewah/.depend/ (🗑️)
removing ewah/bitmap.o (🗑️)
removing ewah/ewah_bitmap.o (🗑️)
removing ewah/ewah_io.o (🗑️)
removing ewah/ewah_rlw.o (🗑️)
removing exec-cmd.o (🗑️)
removing fetch-negotiator.o (🗑️)
removing fetch-pack.o (🗑️)
removing fmt-merge-msg.o (🗑️)
removing fsck.o (🗑️)
removing fsmonitor.o (🗑️)
removing fuzz-commit-graph.o (🗑️)
removing fuzz-pack-headers.o (🗑️)
removing fuzz-pack-idx.o (🗑️)
removing gettext.o (🗑️)
removing git (🗑️)
removing git-add (🗑️)
removing git-add--interactive (🗑️)
removing git-am (🗑️)
removing git-annotate (🗑️)
removing git-apply (🗑️)
removing git-archimport (🗑️)
removing git-archive (🗑️)
removing git-bisect (🗑️)
removing git-bisect--helper (🗑️)
removing git-blame (🗑️)
removing git-branch (🗑️)
removing git-bugreport (🗑️)
removing git-bundle (🗑️)
removing git-cat-file (🗑️)
removing git-check-attr (🗑️)
removing git-check-ignore (🗑️)
removing git-check-mailmap (🗑️)
removing git-check-ref-format (🗑️)
removing git-checkout (🗑️)
removing git-checkout--worker (🗑️)
removing git-checkout-index (🗑️)
removing git-cherry (🗑️)
removing git-cherry-pick (🗑️)
removing git-clean (🗑️)
removing git-clone (🗑️)
removing git-column (🗑️)
removing git-commit (🗑️)
removing git-commit-graph (🗑️)
removing git-commit-tree (🗑️)
removing git-config (🗑️)
removing git-count-objects (🗑️)
removing git-credential (🗑️)
removing git-credential-cache (🗑️)
removing git-credential-cache--daemon (🗑️)
removing git-credential-store (🗑️)
removing git-cvsexportcommit (🗑️)
removing git-cvsimport (🗑️)
removing git-cvsserver (🗑️)
removing git-daemon (🗑️)
removing git-describe (🗑️)
removing git-diff (🗑️)
removing git-diff-files (🗑️)
removing git-diff-index (🗑️)
removing git-diff-tree (🗑️)
removing git-difftool (🗑️)
removing git-difftool--helper (🗑️)
removing git-env--helper (🗑️)
removing git-fast-export (🗑️)
removing git-fast-import (🗑️)
removing git-fetch (🗑️)
removing git-fetch-pack (🗑️)
removing git-filter-branch (🗑️)
removing git-fmt-merge-msg (🗑️)
removing git-for-each-ref (🗑️)
removing git-for-each-repo (🗑️)
removing git-format-patch (🗑️)
removing git-fsck (🗑️)
removing git-fsck-objects (🗑️)
removing git-gc (🗑️)
removing git-get-tar-commit-id (🗑️)
removing git-grep (🗑️)
removing git-gui/GIT-GUI-VARS (🗑️)
removing git-gui/GIT-VERSION-FILE (🗑️)
removing git-gui/git-gui (🗑️)
removing git-gui/lib/tclIndex (🗑️)
removing git-gui/po/bg.msg (🗑️)
removing git-gui/po/de.msg (🗑️)
removing git-gui/po/el.msg (🗑️)
removing git-gui/po/fr.msg (🗑️)
removing git-gui/po/hu.msg (🗑️)
removing git-gui/po/it.msg (🗑️)
removing git-gui/po/ja.msg (🗑️)
removing git-gui/po/nb.msg (🗑️)
removing git-gui/po/pt_br.msg (🗑️)
removing git-gui/po/pt_pt.msg (🗑️)
removing git-gui/po/ru.msg (🗑️)
removing git-gui/po/sv.msg (🗑️)
removing git-gui/po/vi.msg (🗑️)
removing git-gui/po/zh_cn.msg (🗑️)
removing git-hash-object (🗑️)
removing git-help (🗑️)
removing git-hook (🗑️)
removing git-http-backend (🗑️)
removing git-http-fetch (🗑️)
removing git-http-push (🗑️)
removing git-imap-send (🗑️)
removing git-index-pack (🗑️)
removing git-init (🗑️)
removing git-init-db (🗑️)
removing git-instaweb (🗑️)
removing git-interpret-trailers (🗑️)
removing git-log (🗑️)
removing git-ls-files (🗑️)
removing git-ls-remote (🗑️)
removing git-ls-tree (🗑️)
removing git-mailinfo (🗑️)
removing git-mailsplit (🗑️)
removing git-maintenance (🗑️)
removing git-merge (🗑️)
removing git-merge-base (🗑️)
removing git-merge-file (🗑️)
removing git-merge-index (🗑️)
removing git-merge-octopus (🗑️)
removing git-merge-one-file (🗑️)
removing git-merge-ours (🗑️)
removing git-merge-recursive (🗑️)
removing git-merge-resolve (🗑️)
removing git-merge-subtree (🗑️)
removing git-merge-tree (🗑️)
removing git-mergetool (🗑️)
removing git-mergetool--lib (🗑️)
removing git-mktag (🗑️)
removing git-mktree (🗑️)
removing git-multi-pack-index (🗑️)
removing git-mv (🗑️)
removing git-name-rev (🗑️)
removing git-notes (🗑️)
removing git-p4 (🗑️)
removing git-pack-objects (🗑️)
removing git-pack-redundant (🗑️)
removing git-pack-refs (🗑️)
removing git-patch-id (🗑️)
removing git-prune (🗑️)
removing git-prune-packed (🗑️)
removing git-pull (🗑️)
removing git-push (🗑️)
removing git-quiltimport (🗑️)
removing git-range-diff (🗑️)
removing git-read-tree (🗑️)
removing git-rebase (🗑️)
removing git-receive-pack (🗑️)
removing git-reflog (🗑️)
removing git-remote (🗑️)
removing git-remote-ext (🗑️)
removing git-remote-fd (🗑️)
removing git-remote-ftp (🗑️)
removing git-remote-ftps (🗑️)
removing git-remote-http (🗑️)
removing git-remote-https (🗑️)
removing git-repack (🗑️)
removing git-replace (🗑️)
removing git-request-pull (🗑️)
removing git-rerere (🗑️)
removing git-reset (🗑️)
removing git-restore (🗑️)
removing git-rev-list (🗑️)
removing git-rev-parse (🗑️)
removing git-revert (🗑️)
removing git-rm (🗑️)
removing git-send-email (🗑️)
removing git-send-pack (🗑️)
removing git-sh-i18n (🗑️)
removing git-sh-i18n--envsubst (🗑️)
removing git-sh-setup (🗑️)
removing git-shell (🗑️)
removing git-shortlog (🗑️)
removing git-show (🗑️)
removing git-show-branch (🗑️)
removing git-show-index (🗑️)
removing git-show-ref (🗑️)
removing git-sparse-checkout (🗑️)
removing git-stage (🗑️)
removing git-stash (🗑️)
removing git-status (🗑️)
removing git-stripspace (🗑️)
removing git-submodule (🗑️)
removing git-submodule--helper (🗑️)
removing git-svn (🗑️)
removing git-switch (🗑️)
removing git-symbolic-ref (🗑️)
removing git-tag (🗑️)
removing git-unpack-file (🗑️)
removing git-unpack-objects (🗑️)
removing git-update-index (🗑️)
removing git-update-ref (🗑️)
removing git-update-server-info (🗑️)
removing git-upload-archive (🗑️)
removing git-upload-pack (🗑️)
removing git-var (🗑️)
removing git-verify-commit (🗑️)
removing git-verify-pack (🗑️)
removing git-verify-tag (🗑️)
removing git-web--browse (🗑️)
removing git-whatchanged (🗑️)
removing git-worktree (🗑️)
removing git-write-tree (🗑️)
removing git.o (🗑️)
removing gitk-git/GIT-TCLTK-VARS (🗑️)
removing gitk-git/gitk-wish (🗑️)
removing gitk-git/po/bg.msg (🗑️)
removing gitk-git/po/ca.msg (🗑️)
removing gitk-git/po/de.msg (🗑️)
removing gitk-git/po/es.msg (🗑️)
removing gitk-git/po/fr.msg (🗑️)
removing gitk-git/po/hu.msg (🗑️)
removing gitk-git/po/it.msg (🗑️)
removing gitk-git/po/ja.msg (🗑️)
removing gitk-git/po/pt_br.msg (🗑️)
removing gitk-git/po/pt_pt.msg (🗑️)
removing gitk-git/po/ru.msg (🗑️)
removing gitk-git/po/sv.msg (🗑️)
removing gitk-git/po/vi.msg (🗑️)
removing gitk-git/po/zh_cn.msg (🗑️)
removing gitweb/GITWEB-BUILD-OPTIONS (🗑️)
removing gitweb/gitweb.cgi (🗑️)
removing gitweb/static/gitweb.js (🗑️)
removing gpg-interface.o (🗑️)
removing graph.o (🗑️)
removing grep.o (🗑️)
removing hash-lookup.o (🗑️)
removing hashmap.o (🗑️)
removing help.o (🗑️)
removing hex.o (🗑️)
removing hook-list.h (🗑️)
removing hook.o (🗑️)
removing http-backend.o (🗑️)
removing http-fetch.o (🗑️)
removing http-push.o (🗑️)
removing http-walker.o (🗑️)
removing http.o (🗑️)
removing ident.o (🗑️)
removing imap-send.o (🗑️)
removing json-writer.o (🗑️)
removing kwset.o (🗑️)
removing levenshtein.o (🗑️)
removing libgit.a (🗑️)
removing line-log.o (🗑️)
removing line-range.o (🗑️)
removing linear-assignment.o (🗑️)
removing list-objects-filter-options.o (🗑️)
removing list-objects-filter.o (🗑️)
removing list-objects.o (🗑️)
removing ll-merge.o (🗑️)
removing lockfile.o (🗑️)
removing log-tree.o (🗑️)
removing ls-refs.o (🗑️)
removing mailinfo.o (🗑️)
removing mailmap.o (🗑️)
removing match-trees.o (🗑️)
removing mem-pool.o (🗑️)
removing merge-blobs.o (🗑️)
removing merge-ort-wrappers.o (🗑️)
removing merge-ort.o (🗑️)
removing merge-recursive.o (🗑️)
removing merge.o (🗑️)
removing mergesort.o (🗑️)
removing midx.o (🗑️)
removing name-hash.o (🗑️)
removing negotiator/.depend/ (🗑️)
removing negotiator/default.o (🗑️)
removing negotiator/noop.o (🗑️)
removing negotiator/skipping.o (🗑️)
removing notes-cache.o (🗑️)
removing notes-merge.o (🗑️)
removing notes-utils.o (🗑️)
removing notes.o (🗑️)
removing object-file.o (🗑️)
removing object-name.o (🗑️)
removing object.o (🗑️)
removing oid-array.o (🗑️)
removing oidmap.o (🗑️)
removing oidset.o (🗑️)
removing oidtree.o (🗑️)
removing pack-bitmap-write.o (🗑️)
removing pack-bitmap.o (🗑️)
removing pack-check.o (🗑️)
removing pack-objects.o (🗑️)
removing pack-revindex.o (🗑️)
removing pack-write.o (🗑️)
removing packfile.o (🗑️)
removing pager.o (🗑️)
removing parallel-checkout.o (🗑️)
removing parse-options-cb.o (🗑️)
removing parse-options.o (🗑️)
removing patch-delta.o (🗑️)
removing patch-ids.o (🗑️)
removing path.o (🗑️)
removing pathspec.o (🗑️)
removing perl/build/ (🗑️)
removing pkt-line.o (🗑️)
removing po/build/ (🗑️)
removing preload-index.o (🗑️)
removing pretty.o (🗑️)
removing prio-queue.o (🗑️)
removing progress.o (🗑️)
removing promisor-remote.o (🗑️)
removing prompt.o (🗑️)
removing protocol-caps.o (🗑️)
removing protocol.o (🗑️)
removing prune-packed.o (🗑️)
removing quote.o (🗑️)
removing range-diff.o (🗑️)
removing reachable.o (🗑️)
removing read-cache.o (🗑️)
removing rebase-interactive.o (🗑️)
removing rebase.o (🗑️)
removing ref-filter.o (🗑️)
removing reflog-walk.o (🗑️)
removing reflog.o (🗑️)
removing refs.o (🗑️)
removing refs/.depend/ (🗑️)
removing refs/debug.o (🗑️)
removing refs/files-backend.o (🗑️)
removing refs/iterator.o (🗑️)
removing refs/packed-backend.o (🗑️)
removing refs/ref-cache.o (🗑️)
removing refspec.o (🗑️)
removing reftable/.depend/ (🗑️)
removing reftable/basics.o (🗑️)
removing reftable/basics_test.o (🗑️)
removing reftable/block.o (🗑️)
removing reftable/block_test.o (🗑️)
removing reftable/blocksource.o (🗑️)
removing reftable/dump.o (🗑️)
removing reftable/error.o (🗑️)
removing reftable/generic.o (🗑️)
removing reftable/iter.o (🗑️)
removing reftable/libreftable.a (🗑️)
removing reftable/libreftable_test.a (🗑️)
removing reftable/merged.o (🗑️)
removing reftable/merged_test.o (🗑️)
removing reftable/pq.o (🗑️)
removing reftable/pq_test.o (🗑️)
removing reftable/publicbasics.o (🗑️)
removing reftable/reader.o (🗑️)
removing reftable/readwrite_test.o (🗑️)
removing reftable/record.o (🗑️)
removing reftable/record_test.o (🗑️)
removing reftable/refname.o (🗑️)
removing reftable/refname_test.o (🗑️)
removing reftable/stack.o (🗑️)
removing reftable/stack_test.o (🗑️)
removing reftable/test_framework.o (🗑️)
removing reftable/tree.o (🗑️)
removing reftable/tree_test.o (🗑️)
removing reftable/writer.o (🗑️)
removing remote-curl.o (🗑️)
removing remote.o (🗑️)
removing replace-object.o (🗑️)
removing repo-settings.o (🗑️)
removing repository.o (🗑️)
removing rerere.o (🗑️)
removing reset.o (🗑️)
removing resolve-undo.o (🗑️)
removing revision.o (🗑️)
removing run-command.o (🗑️)
removing send-pack.o (🗑️)
removing sequencer.o (🗑️)
removing serve.o (🗑️)
removing server-info.o (🗑️)
removing setup.o (🗑️)
removing sh-i18n--envsubst.o (🗑️)
removing sha1dc/.depend/ (🗑️)
removing sha1dc/sha1.o (🗑️)
removing sha1dc/ubc_check.o (🗑️)
removing sha1dc_git.o (🗑️)
removing sha256/block/.depend/ (🗑️)
removing sha256/block/sha256.o (🗑️)
removing shallow.o (🗑️)
removing shell.o (🗑️)
removing sideband.o (🗑️)
removing sigchain.o (🗑️)
removing sparse-index.o (🗑️)
removing split-index.o (🗑️)
removing stable-qsort.o (🗑️)
removing strbuf.o (🗑️)
removing streaming.o (🗑️)
removing string-list.o (🗑️)
removing strmap.o (🗑️)
removing strvec.o (🗑️)
removing sub-process.o (🗑️)
removing submodule-config.o (🗑️)
removing submodule.o (🗑️)
removing symlinks.o (🗑️)
removing t/helper/.depend/ (🗑️)
removing t/helper/test-advise.o (🗑️)
removing t/helper/test-bitmap.o (🗑️)
removing t/helper/test-bloom.o (🗑️)
removing t/helper/test-chmtime.o (🗑️)
removing t/helper/test-config.o (🗑️)
removing t/helper/test-crontab.o (🗑️)
removing t/helper/test-csprng.o (🗑️)
removing t/helper/test-ctype.o (🗑️)
removing t/helper/test-date.o (🗑️)
removing t/helper/test-delta.o (🗑️)
removing t/helper/test-dir-iterator.o (🗑️)
removing t/helper/test-drop-caches.o (🗑️)
removing t/helper/test-dump-cache-tree.o (🗑️)
removing t/helper/test-dump-fsmonitor.o (🗑️)
removing t/helper/test-dump-split-index.o (🗑️)
removing t/helper/test-dump-untracked-cache.o (🗑️)
removing t/helper/test-example-decorate.o (🗑️)
removing t/helper/test-fake-ssh (🗑️)
removing t/helper/test-fake-ssh.o (🗑️)
removing t/helper/test-fast-rebase.o (🗑️)
removing t/helper/test-genrandom.o (🗑️)
removing t/helper/test-genzeros.o (🗑️)
removing t/helper/test-getcwd.o (🗑️)
removing t/helper/test-hash-speed.o (🗑️)
removing t/helper/test-hash.o (🗑️)
removing t/helper/test-hashmap.o (🗑️)
removing t/helper/test-index-version.o (🗑️)
removing t/helper/test-json-writer.o (🗑️)
removing t/helper/test-lazy-init-name-hash.o (🗑️)
removing t/helper/test-match-trees.o (🗑️)
removing t/helper/test-mergesort.o (🗑️)
removing t/helper/test-mktemp.o (🗑️)
removing t/helper/test-oid-array.o (🗑️)
removing t/helper/test-oidmap.o (🗑️)
removing t/helper/test-oidtree.o (🗑️)
removing t/helper/test-online-cpus.o (🗑️)
removing t/helper/test-parse-options.o (🗑️)
removing t/helper/test-parse-pathspec-file.o (🗑️)
removing t/helper/test-partial-clone.o (🗑️)
removing t/helper/test-path-utils.o (🗑️)
removing t/helper/test-pcre2-config.o (🗑️)
removing t/helper/test-pkt-line.o (🗑️)
removing t/helper/test-prio-queue.o (🗑️)
removing t/helper/test-proc-receive.o (🗑️)
removing t/helper/test-progress.o (🗑️)
removing t/helper/test-reach.o (🗑️)
removing t/helper/test-read-cache.o (🗑️)
removing t/helper/test-read-graph.o (🗑️)
removing t/helper/test-read-midx.o (🗑️)
removing t/helper/test-ref-store.o (🗑️)
removing t/helper/test-reftable.o (🗑️)
removing t/helper/test-regex.o (🗑️)
removing t/helper/test-repository.o (🗑️)
removing t/helper/test-revision-walking.o (🗑️)
removing t/helper/test-run-command.o (🗑️)
removing t/helper/test-scrap-cache-tree.o (🗑️)
removing t/helper/test-serve-v2.o (🗑️)
removing t/helper/test-sha1.o (🗑️)
removing t/helper/test-sha256.o (🗑️)
removing t/helper/test-sigchain.o (🗑️)
removing t/helper/test-simple-ipc.o (🗑️)
removing t/helper/test-strcmp-offset.o (🗑️)
removing t/helper/test-string-list.o (🗑️)
removing t/helper/test-submodule-config.o (🗑️)
removing t/helper/test-submodule-nested-repo-config.o (🗑️)
removing t/helper/test-subprocess.o (🗑️)
removing t/helper/test-tool (🗑️)
removing t/helper/test-tool.o (🗑️)
removing t/helper/test-trace2.o (🗑️)
removing t/helper/test-urlmatch-normalization.o (🗑️)
removing t/helper/test-userdiff.o (🗑️)
removing t/helper/test-wildmatch.o (🗑️)
removing t/helper/test-windows-named-pipe.o (🗑️)
removing t/helper/test-write-cache.o (🗑️)
removing t/helper/test-xml-encode.o (🗑️)
removing tag.o (🗑️)
removing tempfile.o (🗑️)
removing templates/blt/ (🗑️)
removing templates/boilerplates.made (🗑️)
removing thread-utils.o (🗑️)
removing tmp-objdir.o (🗑️)
removing trace.o (🗑️)
removing trace2.o (🗑️)
removing trace2/.depend/ (🗑️)
removing trace2/tr2_cfg.o (🗑️)
removing trace2/tr2_cmd_name.o (🗑️)
removing trace2/tr2_dst.o (🗑️)
removing trace2/tr2_sid.o (🗑️)
removing trace2/tr2_sysenv.o (🗑️)
removing trace2/tr2_tbuf.o (🗑️)
removing trace2/tr2_tgt_event.o (🗑️)
removing trace2/tr2_tgt_normal.o (🗑️)
removing trace2/tr2_tgt_perf.o (🗑️)
removing trace2/tr2_tls.o (🗑️)
removing trailer.o (🗑️)
removing transport-helper.o (🗑️)
removing transport.o (🗑️)
removing tree-diff.o (🗑️)
removing tree-walk.o (🗑️)
removing tree.o (🗑️)
removing unix-socket.o (🗑️)
removing unix-stream-server.o (🗑️)
removing unpack-trees.o (🗑️)
removing upload-pack.o (🗑️)
removing url.o (🗑️)
removing urlmatch.o (🗑️)
removing usage.o (🗑️)
removing userdiff.o (🗑️)
removing utf8.o (🗑️)
removing varint.o (🗑️)
removing version.o (🗑️)
removing versioncmp.o (🗑️)
removing walker.o (🗑️)
removing wildmatch.o (🗑️)
removing worktree.o (🗑️)
removing wrapper.o (🗑️)
removing write-or-die.o (🗑️)
removing ws.o (🗑️)
removing wt-status.o (🗑️)
removing xdiff-interface.o (🗑️)
removing xdiff/.depend/ (🗑️)
removing xdiff/lib.a (🗑️)
removing xdiff/xdiffi.o (🗑️)
removing xdiff/xemit.o (🗑️)
removing xdiff/xhistogram.o (🗑️)
removing xdiff/xmerge.o (🗑️)
removing xdiff/xpatience.o (🗑️)
removing xdiff/xprepare.o (🗑️)
removing xdiff/xutils.o (🗑️)
removing zlib.o (🗑️)
ek@apok:~/src/git ((4b6846d9dc...)|BISECTING)$ git bisect old
Bisecting: 60 revisions left to test after this (roughly 6 steps)
[0f5e8851737282c9dd342032fe9a2d8b10367c9a] Merge branch 'rc/fetch-refetch'
ek@apok:~/src/git ((0f5e885173...)|BISECTING)$ make prefix="$HOME/mygit" -j5
GIT_VERSION = 2.35.1.809.g0f5e885173
* new build flags
CC fuzz-pack-headers.o
CC fuzz-commit-graph.o
CC fuzz-pack-idx.o
CC daemon.o
CC common-main.o
CC abspath.o
CC add-interactive.o
* new link flags
CC add-patch.o
CC advice.o
CC alias.o
CC alloc.o
CC apply.o
CC archive-tar.o
CC archive-zip.o
CC archive.o
* new prefix flags
CC base85.o
CC bisect.o
CC blame.o
CC blob.o
CC bloom.o
CC branch.o
CC bulk-checkin.o
CC bundle.o
CC cache-tree.o
CC cbtree.o
CC chdir-notify.o
CC checkout.o
CC chunk-format.o
CC color.o
CC column.o
CC combine-diff.o
CC commit-graph.o
CC commit-reach.o
CC commit.o
CC compat/obstack.o
CC compat/terminal.o
CC compat/zlib-uncompress2.o
CC config.o
CC connect.o
CC connected.o
CC convert.o
CC copy.o
CC credential.o
CC csum-file.o
CC ctype.o
CC date.o
CC decorate.o
CC delta-islands.o
CC diff-delta.o
CC diff-merges.o
CC diff-lib.o
CC diff-no-index.o
CC diff.o
CC diffcore-break.o
CC diffcore-delta.o
CC diffcore-order.o
CC diffcore-pickaxe.o
CC diffcore-rename.o
CC diffcore-rotate.o
CC dir-iterator.o
CC dir.o
CC editor.o
CC entry.o
CC environment.o
CC ewah/bitmap.o
CC ewah/ewah_bitmap.o
CC ewah/ewah_io.o
CC ewah/ewah_rlw.o
CC exec-cmd.o
CC fetch-negotiator.o
CC fetch-pack.o
CC fmt-merge-msg.o
CC fsck.o
CC fsmonitor.o
CC gettext.o
CC gpg-interface.o
CC graph.o
CC grep.o
CC hash-lookup.o
CC hashmap.o
GEN command-list.h
CC hex.o
CC hook.o
CC ident.o
CC json-writer.o
CC kwset.o
CC levenshtein.o
CC line-log.o
CC line-range.o
CC linear-assignment.o
CC list-objects-filter-options.o
CC list-objects-filter.o
CC list-objects.o
CC ll-merge.o
CC lockfile.o
CC log-tree.o
CC ls-refs.o
CC mailinfo.o
CC mailmap.o
CC match-trees.o
CC mem-pool.o
CC merge-blobs.o
CC merge-ort.o
CC merge-ort-wrappers.o
CC merge-recursive.o
CC merge.o
CC mergesort.o
CC midx.o
CC name-hash.o
CC negotiator/default.o
CC negotiator/noop.o
CC negotiator/skipping.o
CC notes-cache.o
CC notes-merge.o
CC notes-utils.o
CC notes.o
CC object-file.o
CC object-name.o
CC object.o
CC oid-array.o
CC oidmap.o
CC oidset.o
CC oidtree.o
CC pack-bitmap-write.o
CC pack-bitmap.o
CC pack-check.o
CC pack-objects.o
CC pack-revindex.o
CC pack-write.o
CC packfile.o
CC pager.o
CC parallel-checkout.o
CC parse-options-cb.o
CC parse-options.o
CC patch-delta.o
CC patch-ids.o
CC path.o
CC pathspec.o
CC pkt-line.o
CC preload-index.o
CC pretty.o
CC prio-queue.o
CC progress.o
CC promisor-remote.o
CC prompt.o
CC protocol.o
CC protocol-caps.o
CC prune-packed.o
CC quote.o
CC range-diff.o
CC reachable.o
CC read-cache.o
CC rebase-interactive.o
CC rebase.o
CC ref-filter.o
CC reflog-walk.o
CC reflog.o
CC refs.o
CC refs/debug.o
CC refs/files-backend.o
CC refs/iterator.o
CC refs/packed-backend.o
CC refs/ref-cache.o
CC refspec.o
CC remote.o
CC replace-object.o
CC repo-settings.o
CC repository.o
CC rerere.o
CC reset.o
CC resolve-undo.o
CC revision.o
CC run-command.o
CC send-pack.o
CC sequencer.o
CC serve.o
CC server-info.o
CC setup.o
CC shallow.o
CC sideband.o
CC sigchain.o
CC sparse-index.o
CC split-index.o
CC stable-qsort.o
CC strbuf.o
CC streaming.o
CC string-list.o
CC strmap.o
CC strvec.o
CC sub-process.o
CC submodule-config.o
CC submodule.o
CC symlinks.o
CC tag.o
CC tempfile.o
CC thread-utils.o
CC tmp-objdir.o
CC trace.o
CC trace2.o
CC trace2/tr2_cfg.o
CC trace2/tr2_cmd_name.o
CC trace2/tr2_dst.o
CC trace2/tr2_sid.o
CC trace2/tr2_sysenv.o
CC trace2/tr2_tbuf.o
CC trace2/tr2_tgt_event.o
CC trace2/tr2_tgt_normal.o
CC trace2/tr2_tgt_perf.o
CC trace2/tr2_tls.o
CC trailer.o
CC transport-helper.o
CC transport.o
CC tree-diff.o
CC tree-walk.o
CC tree.o
CC unpack-trees.o
CC upload-pack.o
CC url.o
CC urlmatch.o
CC usage.o
CC userdiff.o
CC utf8.o
CC varint.o
CC versioncmp.o
CC walker.o
CC wildmatch.o
CC worktree.o
CC wrapper.o
CC write-or-die.o
CC ws.o
CC wt-status.o
CC xdiff-interface.o
CC zlib.o
CC unix-socket.o
CC unix-stream-server.o
CC compat/simple-ipc/ipc-shared.o
CC compat/simple-ipc/ipc-unix-socket.o
CC sha1dc_git.o
CC sha1dc/sha1.o
CC sha1dc/ubc_check.o
CC sha256/block/sha256.o
CC compat/linux/procinfo.o
CC compat/fopen.o
CC compat/strlcpy.o
CC compat/qsort_s.o
CC xdiff/xdiffi.o
CC xdiff/xemit.o
CC xdiff/xhistogram.o
CC xdiff/xmerge.o
CC xdiff/xpatience.o
CC xdiff/xprepare.o
CC xdiff/xutils.o
CC reftable/basics.o
CC reftable/error.o
CC reftable/block.o
CC reftable/blocksource.o
CC reftable/iter.o
CC reftable/publicbasics.o
CC reftable/merged.o
CC reftable/pq.o
CC reftable/reader.o
CC reftable/record.o
CC reftable/refname.o
CC reftable/generic.o
CC reftable/stack.o
CC reftable/tree.o
CC reftable/writer.o
CC http-backend.o
CC imap-send.o
CC http.o
CC sh-i18n--envsubst.o
CC shell.o
CC http-walker.o
CC http-fetch.o
CC http-push.o
CC remote-curl.o
* new script parameters
* new perl-specific parameters
* new Python interpreter location
GEN git-instaweb
CC git.o
CC builtin/add.o
CC builtin/am.o
CC builtin/annotate.o
CC builtin/apply.o
CC builtin/archive.o
CC builtin/bisect--helper.o
CC builtin/blame.o
CC builtin/branch.o
GEN hook-list.h
CC builtin/bundle.o
CC builtin/cat-file.o
CC builtin/check-attr.o
CC builtin/check-ignore.o
CC builtin/check-mailmap.o
CC builtin/check-ref-format.o
CC builtin/checkout--worker.o
CC builtin/checkout-index.o
CC builtin/checkout.o
CC builtin/clean.o
CC builtin/clone.o
CC builtin/column.o
CC builtin/commit-graph.o
CC builtin/commit-tree.o
CC builtin/commit.o
CC builtin/config.o
CC builtin/count-objects.o
CC builtin/credential-cache--daemon.o
CC builtin/credential-cache.o
CC builtin/credential-store.o
CC builtin/credential.o
CC builtin/describe.o
CC builtin/diff-files.o
CC builtin/diff-index.o
CC builtin/diff-tree.o
CC builtin/diff.o
CC builtin/difftool.o
CC builtin/env--helper.o
CC builtin/fast-export.o
CC builtin/fast-import.o
CC builtin/fetch-pack.o
CC builtin/fetch.o
CC builtin/fmt-merge-msg.o
CC builtin/for-each-ref.o
CC builtin/for-each-repo.o
CC builtin/fsck.o
CC builtin/gc.o
CC builtin/get-tar-commit-id.o
CC builtin/grep.o
CC builtin/hash-object.o
GEN config-list.h
CC builtin/hook.o
CC builtin/index-pack.o
CC builtin/init-db.o
CC builtin/interpret-trailers.o
CC builtin/log.o
CC builtin/ls-files.o
CC builtin/ls-remote.o
CC builtin/ls-tree.o
CC builtin/mailinfo.o
CC builtin/mailsplit.o
CC builtin/merge-base.o
CC builtin/merge-file.o
CC builtin/merge-index.o
CC builtin/merge-ours.o
CC builtin/merge-recursive.o
CC builtin/merge-tree.o
CC builtin/merge.o
CC builtin/mktag.o
CC builtin/mktree.o
CC builtin/multi-pack-index.o
CC builtin/mv.o
CC builtin/name-rev.o
CC builtin/notes.o
CC builtin/pack-objects.o
CC builtin/pack-redundant.o
CC builtin/pack-refs.o
CC builtin/patch-id.o
CC builtin/prune-packed.o
CC builtin/prune.o
CC builtin/pull.o
CC builtin/push.o
CC builtin/range-diff.o
CC builtin/read-tree.o
CC builtin/rebase.o
CC builtin/receive-pack.o
CC builtin/reflog.o
CC builtin/remote-ext.o
CC builtin/remote-fd.o
CC builtin/remote.o
CC builtin/repack.o
CC builtin/replace.o
CC builtin/rerere.o
CC builtin/reset.o
CC builtin/rev-list.o
CC builtin/rev-parse.o
CC builtin/revert.o
CC builtin/rm.o
CC builtin/send-pack.o
CC builtin/shortlog.o
CC builtin/show-branch.o
CC builtin/show-index.o
CC builtin/show-ref.o
CC builtin/sparse-checkout.o
CC builtin/stash.o
CC builtin/stripspace.o
CC builtin/submodule--helper.o
CC builtin/symbolic-ref.o
CC builtin/tag.o
CC builtin/unpack-file.o
CC builtin/unpack-objects.o
CC builtin/update-index.o
CC builtin/update-ref.o
CC builtin/update-server-info.o
CC builtin/upload-archive.o
CC builtin/upload-pack.o
CC builtin/var.o
CC builtin/verify-commit.o
CC builtin/verify-pack.o
CC builtin/verify-tag.o
CC builtin/worktree.o
CC builtin/write-tree.o
GEN git-mergetool--lib
GEN git-sh-i18n
GEN git-sh-setup
CC attr.o
CC help.o
CC version.o
AR xdiff/lib.a
AR reftable/libreftable.a
GEN git-bisect
GEN git-difftool--helper
GEN git-filter-branch
GEN git-merge-octopus
GEN git-merge-one-file
GEN git-merge-resolve
GEN git-mergetool
GEN git-quiltimport
GEN git-request-pull
GEN git-submodule
GEN git-web--browse
GEN GIT-PERL-HEADER
GEN git-p4
CC builtin/bugreport.o
CC builtin/help.o
GEN git-add--interactive
GEN git-archimport
GEN git-cvsexportcommit
GEN git-cvsimport
GEN git-cvsserver
GEN git-send-email
GEN git-svn
AR libgit.a
LINK git-http-backend
LINK git-daemon
LINK git-imap-send
LINK git-sh-i18n--envsubst
LINK git-shell
LINK git-http-fetch
LINK git-http-push
LINK git-remote-http
LINK git
LN/CP git-remote-https
LN/CP git-remote-ftp
LN/CP git-remote-ftps
BUILTIN git-add
BUILTIN git-am
BUILTIN git-apply
BUILTIN git-annotate
BUILTIN git-archive
BUILTIN git-bisect--helper
BUILTIN git-blame
BUILTIN git-branch
BUILTIN git-bugreport
BUILTIN git-bundle
BUILTIN git-cat-file
BUILTIN git-check-attr
BUILTIN git-check-mailmap
BUILTIN git-check-ignore
BUILTIN git-check-ref-format
BUILTIN git-checkout--worker
BUILTIN git-checkout-index
BUILTIN git-checkout
BUILTIN git-clean
BUILTIN git-clone
BUILTIN git-column
BUILTIN git-commit-graph
BUILTIN git-commit-tree
BUILTIN git-commit
BUILTIN git-config
BUILTIN git-count-objects
BUILTIN git-credential-cache--daemon
BUILTIN git-credential-cache
BUILTIN git-credential-store
BUILTIN git-credential
BUILTIN git-describe
BUILTIN git-diff-files
BUILTIN git-diff-index
BUILTIN git-diff
BUILTIN git-diff-tree
BUILTIN git-difftool
BUILTIN git-env--helper
BUILTIN git-fast-export
BUILTIN git-fast-import
BUILTIN git-fetch
BUILTIN git-fetch-pack
BUILTIN git-fmt-merge-msg
BUILTIN git-for-each-ref
BUILTIN git-for-each-repo
BUILTIN git-fsck
BUILTIN git-gc
BUILTIN git-grep
BUILTIN git-get-tar-commit-id
BUILTIN git-hash-object
BUILTIN git-help
BUILTIN git-hook
BUILTIN git-index-pack
BUILTIN git-init-db
BUILTIN git-interpret-trailers
BUILTIN git-log
BUILTIN git-ls-files
BUILTIN git-ls-remote
BUILTIN git-mailinfo
BUILTIN git-ls-tree
BUILTIN git-mailsplit
BUILTIN git-merge-base
BUILTIN git-merge-file
BUILTIN git-merge-index
BUILTIN git-merge-ours
BUILTIN git-merge-recursive
BUILTIN git-merge-tree
BUILTIN git-merge
BUILTIN git-mktag
BUILTIN git-mktree
BUILTIN git-multi-pack-index
BUILTIN git-mv
BUILTIN git-name-rev
BUILTIN git-notes
BUILTIN git-pack-objects
BUILTIN git-pack-redundant
BUILTIN git-pack-refs
BUILTIN git-patch-id
BUILTIN git-prune-packed
BUILTIN git-prune
BUILTIN git-pull
BUILTIN git-push
BUILTIN git-range-diff
BUILTIN git-read-tree
BUILTIN git-rebase
BUILTIN git-receive-pack
BUILTIN git-reflog
BUILTIN git-remote-ext
BUILTIN git-remote-fd
BUILTIN git-remote
BUILTIN git-repack
BUILTIN git-replace
BUILTIN git-reset
BUILTIN git-rerere
BUILTIN git-rev-list
BUILTIN git-revert
BUILTIN git-rm
BUILTIN git-rev-parse
BUILTIN git-send-pack
BUILTIN git-shortlog
BUILTIN git-show-branch
BUILTIN git-show-index
BUILTIN git-show-ref
BUILTIN git-sparse-checkout
BUILTIN git-stash
BUILTIN git-stripspace
BUILTIN git-submodule--helper
BUILTIN git-symbolic-ref
BUILTIN git-tag
BUILTIN git-unpack-file
BUILTIN git-unpack-objects
BUILTIN git-update-index
BUILTIN git-upload-archive
BUILTIN git-update-ref
BUILTIN git-update-server-info
BUILTIN git-upload-pack
BUILTIN git-var
BUILTIN git-verify-commit
BUILTIN git-verify-pack
BUILTIN git-verify-tag
BUILTIN git-worktree
BUILTIN git-write-tree
BUILTIN git-cherry
BUILTIN git-cherry-pick
BUILTIN git-format-patch
BUILTIN git-fsck-objects
BUILTIN git-init
BUILTIN git-maintenance
BUILTIN git-merge-subtree
BUILTIN git-restore
BUILTIN git-show
BUILTIN git-stage
BUILTIN git-status
BUILTIN git-whatchanged
BUILTIN git-switch
SUBDIR git-gui
GITGUI_VERSION = 0.21.0.99.gdf4f9
* new locations or Tcl/Tk interpreter
MSGFMT po/bg.msg MSGFMT po/de.msg MSGFMT po/el.msg MSGFMT po/fr.msg MSGFMT po/hu.msg 565 translated.
579 translated.
MSGFMT po/it.msg 381 translated, 4 fuzzy, 6 untranslated.
MSGFMT po/ja.msg MSGFMT po/nb.msg 520 translated.
514 translated.
MSGFMT po/pt_br.msg MSGFMT po/pt_pt.msg 519 translated, 1 untranslated.
546 translated, 1 untranslated.
474 translated, 39 untranslated.
MSGFMT po/ru.msg MSGFMT po/sv.msg MSGFMT po/vi.msg 520 translated.
MSGFMT po/zh_cn.msg 550 translated.
GEN git-gui
579 translated.
366 translated, 7 fuzzy, 17 untranslated.
INDEX lib/
547 translated.
543 translated.
SUBDIR gitk-git
Generating catalog po/ca.msg
Generating catalog po/bg.msg
msgfmt --statistics --tcl po/bg.po -l bg -d po/
Generating catalog po/de.msg
* new Tcl/Tk interpreter location
msgfmt --statistics --tcl po/ca.po -l ca -d po/
msgfmt --statistics --tcl po/de.po -l de -d po/
Generating catalog po/es.msg
msgfmt --statistics --tcl po/es.po -l es -d po/
307 translated messages307 translated messages.
.
184 translated messages, 46 fuzzy translations, 77 untranslated messages.
Generating catalog po/fr.msg
317 translated messages.
Generating catalog po/hu.msg
msgfmt --statistics --tcl po/fr.po -l fr -d po/
msgfmt --statistics --tcl po/hu.po -l hu -d po/
Generating catalog po/it.msg
msgfmt --statistics --tcl po/it.po -l it -d po/
Generating catalog po/ja.msg
277 translated messages311 translated messages, 18 fuzzy translations.
, 12 untranslated messages.
274 translated messages, 17 fuzzy translations, 16 untranslated messages.
msgfmt --statistics --tcl po/ja.po -l ja -d po/
Generating catalog po/pt_br.msg
msgfmt --statistics --tcl po/pt_br.po -l pt_br -d po/
Generating catalog po/pt_pt.msg
msgfmt --statistics --tcl po/pt_pt.po -l pt_pt -d po/
Generating catalog po/ru.msg
Generating catalog po/sv.msg
msgfmt --statistics --tcl po/ru.po -l ru -d po/
msgfmt --statistics --tcl po/sv.po -l sv -d po/
311 translated messages.
279 translated messages, 16 fuzzy translations, 12 untranslated messages.
311 translated messages.
Generating catalog po/vi.msg
317 translated messages.
msgfmt --statistics --tcl po/vi.po -l vi -d po/
Generating catalog po/zh_cn.msg
311 translated messagesmsgfmt --statistics --tcl po/zh_cn.po -l zh_cn -d po/
.
GEN gitk-wish
307 translated messages.
317 translated messages.
SUBDIR templates
MKDIR -p po/build/locale/bg/LC_MESSAGES
MSGFMT po/build/locale/bg/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/ca/LC_MESSAGES
MSGFMT po/build/locale/ca/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/de/LC_MESSAGES
MSGFMT po/build/locale/de/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/el/LC_MESSAGES
MSGFMT po/build/locale/el/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/es/LC_MESSAGES
MSGFMT po/build/locale/es/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/fr/LC_MESSAGES
MSGFMT po/build/locale/fr/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/id/LC_MESSAGES
MSGFMT po/build/locale/id/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/is/LC_MESSAGES
MSGFMT po/build/locale/is/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/it/LC_MESSAGES
MSGFMT po/build/locale/it/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/ko/LC_MESSAGES
MSGFMT po/build/locale/ko/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/pl/LC_MESSAGES
MSGFMT po/build/locale/pl/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/pt_PT/LC_MESSAGES
MSGFMT po/build/locale/pt_PT/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/ru/LC_MESSAGES
MSGFMT po/build/locale/ru/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/sv/LC_MESSAGES
MSGFMT po/build/locale/sv/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/tr/LC_MESSAGES
MSGFMT po/build/locale/tr/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/vi/LC_MESSAGES
MSGFMT po/build/locale/vi/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/zh_CN/LC_MESSAGES
MSGFMT po/build/locale/zh_CN/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/zh_TW/LC_MESSAGES
MSGFMT po/build/locale/zh_TW/LC_MESSAGES/git.mo
MKDIR -p perl/build/lib
MKDIR -p perl/build/lib/Git
GEN perl/build/lib/Git.pm
GEN perl/build/lib/Git/IndexInfo.pm
GEN perl/build/lib/Git/I18N.pm
GEN perl/build/lib/Git/LoadCPAN.pm
GEN perl/build/lib/Git/Packet.pm
GEN perl/build/lib/Git/SVN.pm
MKDIR -p perl/build/lib/Git/LoadCPAN
GEN perl/build/lib/Git/LoadCPAN/Error.pm
MKDIR -p perl/build/lib/Git/SVN
GEN perl/build/lib/Git/SVN/Fetcher.pm
GEN perl/build/lib/Git/SVN/GlobSpec.pm
GEN perl/build/lib/Git/SVN/Log.pm
GEN perl/build/lib/Git/SVN/Editor.pm
GEN perl/build/lib/Git/SVN/Migration.pm
GEN perl/build/lib/Git/SVN/Prompt.pm
GEN perl/build/lib/Git/SVN/Utils.pm
GEN perl/build/lib/Git/SVN/Ra.pm
MKDIR -p perl/build/lib/Git/LoadCPAN/Mail
GEN perl/build/lib/Git/LoadCPAN/Mail/Address.pm
MKDIR -p perl/build/lib/Git/SVN/Memoize
GEN perl/build/lib/Git/SVN/Memoize/YAML.pm
MKDIR -p perl/build/lib/FromCPAN
GEN perl/build/lib/FromCPAN/Error.pm
MKDIR -p perl/build/lib/FromCPAN/Mail
GEN perl/build/lib/FromCPAN/Mail/Address.pm
CC t/helper/test-fake-ssh.o
CC reftable/basics_test.o
CC reftable/block_test.o
CC reftable/dump.o
CC reftable/merged_test.o
CC reftable/pq_test.o
CC reftable/record_test.o
CC reftable/readwrite_test.o
CC reftable/refname_test.o
CC reftable/stack_test.o
CC reftable/test_framework.o
CC reftable/tree_test.o
CC t/helper/test-tool.o
CC t/helper/test-advise.o
CC t/helper/test-bitmap.o
CC t/helper/test-bloom.o
CC t/helper/test-chmtime.o
CC t/helper/test-config.o
CC t/helper/test-crontab.o
CC t/helper/test-csprng.o
CC t/helper/test-ctype.o
CC t/helper/test-date.o
CC t/helper/test-delta.o
CC t/helper/test-dir-iterator.o
CC t/helper/test-drop-caches.o
CC t/helper/test-dump-cache-tree.o
CC t/helper/test-dump-fsmonitor.o
CC t/helper/test-dump-split-index.o
CC t/helper/test-dump-untracked-cache.o
CC t/helper/test-example-decorate.o
CC t/helper/test-fast-rebase.o
CC t/helper/test-genrandom.o
CC t/helper/test-genzeros.o
CC t/helper/test-getcwd.o
CC t/helper/test-hash-speed.o
CC t/helper/test-hash.o
CC t/helper/test-hashmap.o
CC t/helper/test-index-version.o
CC t/helper/test-json-writer.o
CC t/helper/test-lazy-init-name-hash.o
CC t/helper/test-match-trees.o
CC t/helper/test-mergesort.o
CC t/helper/test-mktemp.o
CC t/helper/test-oid-array.o
CC t/helper/test-oidmap.o
CC t/helper/test-oidtree.o
CC t/helper/test-online-cpus.o
CC t/helper/test-parse-options.o
CC t/helper/test-parse-pathspec-file.o
CC t/helper/test-partial-clone.o
CC t/helper/test-path-utils.o
CC t/helper/test-pcre2-config.o
CC t/helper/test-pkt-line.o
CC t/helper/test-prio-queue.o
CC t/helper/test-proc-receive.o
CC t/helper/test-progress.o
CC t/helper/test-reach.o
CC t/helper/test-read-cache.o
CC t/helper/test-read-graph.o
CC t/helper/test-read-midx.o
CC t/helper/test-ref-store.o
CC t/helper/test-reftable.o
CC t/helper/test-regex.o
CC t/helper/test-repository.o
CC t/helper/test-revision-walking.o
CC t/helper/test-run-command.o
CC t/helper/test-scrap-cache-tree.o
CC t/helper/test-serve-v2.o
CC t/helper/test-sha1.o
CC t/helper/test-sha256.o
CC t/helper/test-sigchain.o
CC t/helper/test-simple-ipc.o
CC t/helper/test-strcmp-offset.o
CC t/helper/test-string-list.o
CC t/helper/test-submodule-config.o
CC t/helper/test-submodule-nested-repo-config.o
CC t/helper/test-subprocess.o
CC t/helper/test-trace2.o
CC t/helper/test-urlmatch-normalization.o
CC t/helper/test-userdiff.o
CC t/helper/test-wildmatch.o
CC t/helper/test-windows-named-pipe.o
CC t/helper/test-write-cache.o
CC t/helper/test-xml-encode.o
MKDIR -p bin-wrappers
GEN bin-wrappers/git
GEN bin-wrappers/git-receive-pack
GEN bin-wrappers/git-shell
GEN bin-wrappers/git-upload-archive
GEN bin-wrappers/git-upload-pack
GEN bin-wrappers/git-cvsserver
GEN bin-wrappers/test-fake-ssh
GEN bin-wrappers/test-tool
AR reftable/libreftable_test.a
LINK t/helper/test-fake-ssh
LINK t/helper/test-tool
ek@apok:~/src/git ((0f5e885173...)|BISECTING)$ make prefix="$HOME/mygit" install
SUBDIR git-gui
SUBDIR gitk-git
SUBDIR templates
install -d -m 755 '/home/ek/mygit/bin'
install -d -m 755 '/home/ek/mygit/libexec/git-core'
install git-daemon git-http-backend git-imap-send git-sh-i18n--envsubst git-shell git-http-fetch git-http-push git-remote-http git-remote-https git-remote-ftp git-remote-ftps '/home/ek/mygit/libexec/git-core'
install git-bisect git-difftool--helper git-filter-branch git-merge-octopus git-merge-one-file git-merge-resolve git-mergetool git-quiltimport git-request-pull git-submodule git-web--browse git-add--interactive git-archimport git-cvsexportcommit git-cvsimport git-cvsserver git-send-email git-svn git-p4 git-instaweb '/home/ek/mygit/libexec/git-core'
install -m 644 git-mergetool--lib git-sh-i18n git-sh-setup '/home/ek/mygit/libexec/git-core'
install git git-receive-pack git-shell git-upload-archive git-upload-pack '/home/ek/mygit/bin'
install git-cvsserver '/home/ek/mygit/bin'
make -C templates DESTDIR='' install
make[1]: Entering directory '/home/ek/src/git/templates'
install -d -m 755 '/home/ek/mygit/share/git-core/templates'
(cd blt && tar cf - .) | \
(cd '/home/ek/mygit/share/git-core/templates' && umask 022 && tar xof -)
make[1]: Leaving directory '/home/ek/src/git/templates'
install -d -m 755 '/home/ek/mygit/libexec/git-core/mergetools'
install -m 644 mergetools/* '/home/ek/mygit/libexec/git-core/mergetools'
install -d -m 755 '/home/ek/mygit/share/locale'
(cd po/build/locale && tar cf - .) | \
(cd '/home/ek/mygit/share/locale' && umask 022 && tar xof -)
install -d -m 755 '/home/ek/mygit/share/perl5'
(cd perl/build/lib && tar cf - .) | \
(cd '/home/ek/mygit/share/perl5' && umask 022 && tar xof -)
make -C gitweb install
make[1]: Entering directory '/home/ek/src/git/gitweb'
make[2]: Entering directory '/home/ek/src/git'
make[2]: 'GIT-VERSION-FILE' is up to date.
make[2]: Leaving directory '/home/ek/src/git'
GEN gitweb.cgi
GEN static/gitweb.js
install -d -m 755 '/home/ek/mygit/share/gitweb'
install -m 755 gitweb.cgi '/home/ek/mygit/share/gitweb'
install -d -m 755 '/home/ek/mygit/share/gitweb/static'
install -m 644 static/gitweb.js static/gitweb.css static/git-logo.png static/git-favicon.png '/home/ek/mygit/share/gitweb/static'
make[1]: Leaving directory '/home/ek/src/git/gitweb'
make -C gitk-git install
make[1]: Entering directory '/home/ek/src/git/gitk-git'
install -d -m 755 '/home/ek/mygit/bin'
install -m 755 gitk-wish '/home/ek/mygit/bin'/gitk
install -d -m 755 '/home/ek/mygit/share/gitk/lib/msgs'
install -m 644 po/bg.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/ca.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/de.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/es.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/fr.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/hu.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/it.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/ja.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/pt_br.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/pt_pt.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/ru.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/sv.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/vi.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/zh_cn.msg '/home/ek/mygit/share/gitk/lib/msgs' && true
make[1]: Leaving directory '/home/ek/src/git/gitk-git'
make -C git-gui gitexecdir='/home/ek/mygit/libexec/git-core' install
make[1]: Entering directory '/home/ek/src/git/git-gui'
DEST /home/ek/mygit/libexec/git-core
INSTALL 755 git-gui
INSTALL 755 git-gui--askpass
LINK git-citool -> git-gui
DEST /home/ek/mygit/share/git-gui/lib
INSTALL 644 tclIndex
INSTALL 644 about.tcl
INSTALL 644 blame.tcl
INSTALL 644 branch_checkout.tcl
INSTALL 644 branch_create.tcl
INSTALL 644 branch_delete.tcl
INSTALL 644 branch_rename.tcl
INSTALL 644 branch.tcl
INSTALL 644 browser.tcl
INSTALL 644 checkout_op.tcl
INSTALL 644 choose_font.tcl
INSTALL 644 choose_repository.tcl
INSTALL 644 choose_rev.tcl
INSTALL 644 chord.tcl
INSTALL 644 class.tcl
INSTALL 644 commit.tcl
INSTALL 644 console.tcl
INSTALL 644 database.tcl
INSTALL 644 date.tcl
INSTALL 644 diff.tcl
INSTALL 644 encoding.tcl
INSTALL 644 error.tcl
INSTALL 644 index.tcl
INSTALL 644 line.tcl
INSTALL 644 logo.tcl
INSTALL 644 merge.tcl
INSTALL 644 mergetool.tcl
INSTALL 644 option.tcl
INSTALL 644 remote_add.tcl
INSTALL 644 remote_branch_delete.tcl
INSTALL 644 remote.tcl
INSTALL 644 search.tcl
INSTALL 644 shortcut.tcl
INSTALL 644 spellcheck.tcl
INSTALL 644 sshkey.tcl
INSTALL 644 status_bar.tcl
INSTALL 644 themed.tcl
INSTALL 644 tools_dlg.tcl
INSTALL 644 tools.tcl
INSTALL 644 transport.tcl
INSTALL 644 win32.tcl
INSTALL 644 git-gui.ico
INSTALL 644 win32_shortcut.js
DEST /home/ek/mygit/share/git-gui/lib/msgs
INSTALL 644 bg.msg
INSTALL 644 de.msg
INSTALL 644 el.msg
INSTALL 644 fr.msg
INSTALL 644 hu.msg
INSTALL 644 it.msg
INSTALL 644 ja.msg
INSTALL 644 nb.msg
INSTALL 644 pt_br.msg
INSTALL 644 pt_pt.msg
INSTALL 644 ru.msg
INSTALL 644 sv.msg
INSTALL 644 vi.msg
INSTALL 644 zh_cn.msg
make[1]: Leaving directory '/home/ek/src/git/git-gui'
bindir=$(cd '/home/ek/mygit/bin' && pwd) && \
execdir=$(cd '/home/ek/mygit/libexec/git-core' && pwd) && \
destdir_from_execdir_SQ=$(echo 'libexec/git-core' | sed -e 's|[^/][^/]*|..|g') && \
{ test "$bindir/" = "$execdir/" || \
for p in git git-shell git-cvsserver; do \
rm -f "$execdir/$p" && \
test -n "" && \
ln -s "$destdir_from_execdir_SQ/bin/$p" "$execdir/$p" || \
{ test -z "" && \
ln "$bindir/$p" "$execdir/$p" 2>/dev/null || \
cp "$bindir/$p" "$execdir/$p" || exit; } \
done; \
} && \
for p in git-receive-pack git-upload-archive git-upload-pack; do \
rm -f "$bindir/$p" && \
test -n "" && \
ln -s "git" "$bindir/$p" || \
{ test -z "" && \
ln "$bindir/git" "$bindir/$p" 2>/dev/null || \
ln -s "git" "$bindir/$p" 2>/dev/null || \
cp "$bindir/git" "$bindir/$p" || exit; }; \
done && \
for p in git-add git-am git-annotate git-apply git-archive git-bisect--helper git-blame git-branch git-bugreport git-bundle git-cat-file git-check-attr git-check-ignore git-check-mailmap git-check-ref-format git-checkout--worker git-checkout-index git-checkout git-clean git-clone git-column git-commit-graph git-commit-tree git-commit git-config git-count-objects git-credential-cache--daemon git-credential-cache git-credential-store git-credential git-describe git-diff-files git-diff-index git-diff-tree git-diff git-difftool git-env--helper git-fast-export git-fast-import git-fetch-pack git-fetch git-fmt-merge-msg git-for-each-ref git-for-each-repo git-fsck git-gc git-get-tar-commit-id git-grep git-hash-object git-help git-hook git-index-pack git-init-db git-interpret-trailers git-log git-ls-files git-ls-remote git-ls-tree git-mailinfo git-mailsplit git-merge-base git-merge-file git-merge-index git-merge-ours git-merge-recursive git-merge-tree git-merge git-mktag git-mktree git-multi-pack-index git-mv git-name-rev git-notes git-pack-objects git-pack-redundant git-pack-refs git-patch-id git-prune-packed git-prune git-pull git-push git-range-diff git-read-tree git-rebase git-receive-pack git-reflog git-remote-ext git-remote-fd git-remote git-repack git-replace git-rerere git-reset git-rev-list git-rev-parse git-revert git-rm git-send-pack git-shortlog git-show-branch git-show-index git-show-ref git-sparse-checkout git-stash git-stripspace git-submodule--helper git-symbolic-ref git-tag git-unpack-file git-unpack-objects git-update-index git-update-ref git-update-server-info git-upload-archive git-upload-pack git-var git-verify-commit git-verify-pack git-verify-tag git-worktree git-write-tree git-cherry git-cherry-pick git-format-patch git-fsck-objects git-init git-maintenance git-merge-subtree git-restore git-show git-stage git-status git-switch git-whatchanged; do \
rm -f "$execdir/$p" && \
if test -z ""; \
then \
test -n "" && \
ln -s "$destdir_from_execdir_SQ/bin/git" "$execdir/$p" || \
{ test -z "" && \
ln "$execdir/git" "$execdir/$p" 2>/dev/null || \
ln -s "git" "$execdir/$p" 2>/dev/null || \
cp "$execdir/git" "$execdir/$p" || exit; }; \
fi \
done && \
remote_curl_aliases="git-remote-https git-remote-ftp git-remote-ftps" && \
for p in $remote_curl_aliases; do \
rm -f "$execdir/$p" && \
test -n "" && \
ln -s "git-remote-http" "$execdir/$p" || \
{ test -z "" && \
ln "$execdir/git-remote-http" "$execdir/$p" 2>/dev/null || \
ln -s "git-remote-http" "$execdir/$p" 2>/dev/null || \
cp "$execdir/git-remote-http" "$execdir/$p" || exit; } \
done
ek@apok:~/src/git ((0f5e885173...)|BISECTING)$ pushd ~/tmp
~/tmp ~/src/git
ek@apok:~/tmp$ PATH="$HOME/mygit/bin:$PATH" GIT_SSH_COMMAND='{ pid="$(ps -o ppid:1= -p "$$")"; ps -o pid:1=,cmd= -p "$pid"; awk -v RS=\\0 "/^GIT_CONFIG/ { print \" \" \$0 }" "/proc/$pid/environ"; } 1>&2; ssh' GIT_CONFIG_COUNT=1 GIT_CONFIG_KEY_0=foo.bar GIT_CONFIG_VALUE_0=baz git clone --recurse-submodules git@github.com:EliahKagan/has-nested-submodule.git
Cloning into 'has-nested-submodule'...
1061705 git clone --recurse-submodules git@github.com:EliahKagan/has-nested-submodule.git
GIT_CONFIG_COUNT=1
GIT_CONFIG_KEY_0=foo.bar
GIT_CONFIG_VALUE_0=baz
remote: Enumerating objects: 4, done.
remote: Counting objects: 100% (4/4), done.
remote: Compressing objects: 100% (4/4), done.
remote: Total 4 (delta 0), reused 4 (delta 0), pack-reused 0
Receiving objects: 100% (4/4), done.
Submodule 'has-submodule' (git@github.com:EliahKagan/has-submodule.git) registered for path 'has-submodule'
Cloning into '/home/ek/tmp/has-nested-submodule/has-submodule'...
1061746 /home/ek/mygit/libexec/git-core/git clone --no-checkout --progress --separate-git-dir /home/ek/tmp/has-nested-submodule/.git/modules/has-submodule --no-single-branch -- git@github.com:EliahKagan/has-submodule.git /home/ek/tmp/has-nested-submodule/has-submodule
GIT_CONFIG_COUNT=1
GIT_CONFIG_KEY_0=foo.bar
GIT_CONFIG_VALUE_0=baz
remote: Enumerating objects: 4, done.
remote: Counting objects: 100% (4/4), done.
remote: Compressing objects: 100% (4/4), done.
remote: Total 4 (delta 0), reused 4 (delta 0), pack-reused 0
Receiving objects: 100% (4/4), done.
Submodule path 'has-submodule': checked out '8de4a40d782ddfd338f2ada312714d60541c6f80'
Submodule 'trivial' (git@github.com:EliahKagan/trivial.git) registered for path 'has-submodule/trivial'
Cloning into '/home/ek/tmp/has-nested-submodule/has-submodule/trivial'...
1061765 /home/ek/mygit/libexec/git-core/git clone --no-checkout --progress --separate-git-dir /home/ek/tmp/has-nested-submodule/.git/modules/has-submodule/modules/trivial --no-single-branch -- git@github.com:EliahKagan/trivial.git /home/ek/tmp/has-nested-submodule/has-submodule/trivial
GIT_CONFIG_COUNT=1
GIT_CONFIG_KEY_0=foo.bar
GIT_CONFIG_VALUE_0=baz
remote: Enumerating objects: 3, done.
remote: Counting objects: 100% (3/3), done.
remote: Compressing objects: 100% (2/2), done.
remote: Total 3 (delta 0), reused 3 (delta 0), pack-reused 0
Receiving objects: 100% (3/3), done.
Submodule path 'has-submodule/trivial': checked out '656a18dc1e48e035a05a72011a62bca5f41fa07e'
ek@apok:~/tmp$ rm -rf has-nested-submodule/
ek@apok:~/tmp$ popd
~/src/git
ek@apok:~/src/git ((0f5e885173...)|BISECTING)$ rm -r ~/mygit
ek@apok:~/src/git ((0f5e885173...)|BISECTING)$ gix clean -xde
removing .depend/ (🗑️)
removing GIT-BUILD-OPTIONS (🗑️)
removing GIT-CFLAGS (🗑️)
removing GIT-LDFLAGS (🗑️)
removing GIT-PERL-DEFINES (🗑️)
removing GIT-PERL-HEADER (🗑️)
removing GIT-PREFIX (🗑️)
removing GIT-PYTHON-VARS (🗑️)
removing GIT-SCRIPT-DEFINES (🗑️)
removing GIT-USER-AGENT (🗑️)
removing GIT-VERSION-FILE (🗑️)
removing abspath.o (🗑️)
removing add-interactive.o (🗑️)
removing add-patch.o (🗑️)
removing advice.o (🗑️)
removing alias.o (🗑️)
removing alloc.o (🗑️)
removing apply.o (🗑️)
removing archive-tar.o (🗑️)
removing archive-zip.o (🗑️)
removing archive.o (🗑️)
removing attr.o (🗑️)
removing base85.o (🗑️)
removing bin-wrappers/ (🗑️)
removing bisect.o (🗑️)
removing blame.o (🗑️)
removing blob.o (🗑️)
removing bloom.o (🗑️)
removing branch.o (🗑️)
removing builtin/.depend/ (🗑️)
removing builtin/add.o (🗑️)
removing builtin/am.o (🗑️)
removing builtin/annotate.o (🗑️)
removing builtin/apply.o (🗑️)
removing builtin/archive.o (🗑️)
removing builtin/bisect--helper.o (🗑️)
removing builtin/blame.o (🗑️)
removing builtin/branch.o (🗑️)
removing builtin/bugreport.o (🗑️)
removing builtin/bundle.o (🗑️)
removing builtin/cat-file.o (🗑️)
removing builtin/check-attr.o (🗑️)
removing builtin/check-ignore.o (🗑️)
removing builtin/check-mailmap.o (🗑️)
removing builtin/check-ref-format.o (🗑️)
removing builtin/checkout--worker.o (🗑️)
removing builtin/checkout-index.o (🗑️)
removing builtin/checkout.o (🗑️)
removing builtin/clean.o (🗑️)
removing builtin/clone.o (🗑️)
removing builtin/column.o (🗑️)
removing builtin/commit-graph.o (🗑️)
removing builtin/commit-tree.o (🗑️)
removing builtin/commit.o (🗑️)
removing builtin/config.o (🗑️)
removing builtin/count-objects.o (🗑️)
removing builtin/credential-cache--daemon.o (🗑️)
removing builtin/credential-cache.o (🗑️)
removing builtin/credential-store.o (🗑️)
removing builtin/credential.o (🗑️)
removing builtin/describe.o (🗑️)
removing builtin/diff-files.o (🗑️)
removing builtin/diff-index.o (🗑️)
removing builtin/diff-tree.o (🗑️)
removing builtin/diff.o (🗑️)
removing builtin/difftool.o (🗑️)
removing builtin/env--helper.o (🗑️)
removing builtin/fast-export.o (🗑️)
removing builtin/fast-import.o (🗑️)
removing builtin/fetch-pack.o (🗑️)
removing builtin/fetch.o (🗑️)
removing builtin/fmt-merge-msg.o (🗑️)
removing builtin/for-each-ref.o (🗑️)
removing builtin/for-each-repo.o (🗑️)
removing builtin/fsck.o (🗑️)
removing builtin/gc.o (🗑️)
removing builtin/get-tar-commit-id.o (🗑️)
removing builtin/grep.o (🗑️)
removing builtin/hash-object.o (🗑️)
removing builtin/help.o (🗑️)
removing builtin/hook.o (🗑️)
removing builtin/index-pack.o (🗑️)
removing builtin/init-db.o (🗑️)
removing builtin/interpret-trailers.o (🗑️)
removing builtin/log.o (🗑️)
removing builtin/ls-files.o (🗑️)
removing builtin/ls-remote.o (🗑️)
removing builtin/ls-tree.o (🗑️)
removing builtin/mailinfo.o (🗑️)
removing builtin/mailsplit.o (🗑️)
removing builtin/merge-base.o (🗑️)
removing builtin/merge-file.o (🗑️)
removing builtin/merge-index.o (🗑️)
removing builtin/merge-ours.o (🗑️)
removing builtin/merge-recursive.o (🗑️)
removing builtin/merge-tree.o (🗑️)
removing builtin/merge.o (🗑️)
removing builtin/mktag.o (🗑️)
removing builtin/mktree.o (🗑️)
removing builtin/multi-pack-index.o (🗑️)
removing builtin/mv.o (🗑️)
removing builtin/name-rev.o (🗑️)
removing builtin/notes.o (🗑️)
removing builtin/pack-objects.o (🗑️)
removing builtin/pack-redundant.o (🗑️)
removing builtin/pack-refs.o (🗑️)
removing builtin/patch-id.o (🗑️)
removing builtin/prune-packed.o (🗑️)
removing builtin/prune.o (🗑️)
removing builtin/pull.o (🗑️)
removing builtin/push.o (🗑️)
removing builtin/range-diff.o (🗑️)
removing builtin/read-tree.o (🗑️)
removing builtin/rebase.o (🗑️)
removing builtin/receive-pack.o (🗑️)
removing builtin/reflog.o (🗑️)
removing builtin/remote-ext.o (🗑️)
removing builtin/remote-fd.o (🗑️)
removing builtin/remote.o (🗑️)
removing builtin/repack.o (🗑️)
removing builtin/replace.o (🗑️)
removing builtin/rerere.o (🗑️)
removing builtin/reset.o (🗑️)
removing builtin/rev-list.o (🗑️)
removing builtin/rev-parse.o (🗑️)
removing builtin/revert.o (🗑️)
removing builtin/rm.o (🗑️)
removing builtin/send-pack.o (🗑️)
removing builtin/shortlog.o (🗑️)
removing builtin/show-branch.o (🗑️)
removing builtin/show-index.o (🗑️)
removing builtin/show-ref.o (🗑️)
removing builtin/sparse-checkout.o (🗑️)
removing builtin/stash.o (🗑️)
removing builtin/stripspace.o (🗑️)
removing builtin/submodule--helper.o (🗑️)
removing builtin/symbolic-ref.o (🗑️)
removing builtin/tag.o (🗑️)
removing builtin/unpack-file.o (🗑️)
removing builtin/unpack-objects.o (🗑️)
removing builtin/update-index.o (🗑️)
removing builtin/update-ref.o (🗑️)
removing builtin/update-server-info.o (🗑️)
removing builtin/upload-archive.o (🗑️)
removing builtin/upload-pack.o (🗑️)
removing builtin/var.o (🗑️)
removing builtin/verify-commit.o (🗑️)
removing builtin/verify-pack.o (🗑️)
removing builtin/verify-tag.o (🗑️)
removing builtin/worktree.o (🗑️)
removing builtin/write-tree.o (🗑️)
removing bulk-checkin.o (🗑️)
removing bundle.o (🗑️)
removing cache-tree.o (🗑️)
removing cbtree.o (🗑️)
removing chdir-notify.o (🗑️)
removing checkout.o (🗑️)
removing chunk-format.o (🗑️)
removing color.o (🗑️)
removing column.o (🗑️)
removing combine-diff.o (🗑️)
removing command-list.h (🗑️)
removing commit-graph.o (🗑️)
removing commit-reach.o (🗑️)
removing commit.o (🗑️)
removing common-main.o (🗑️)
removing compat/.depend/ (🗑️)
removing compat/fopen.o (🗑️)
removing compat/linux/.depend/ (🗑️)
removing compat/linux/procinfo.o (🗑️)
removing compat/obstack.o (🗑️)
removing compat/qsort_s.o (🗑️)
removing compat/simple-ipc/.depend/ (🗑️)
removing compat/simple-ipc/ipc-shared.o (🗑️)
removing compat/simple-ipc/ipc-unix-socket.o (🗑️)
removing compat/strlcpy.o (🗑️)
removing compat/terminal.o (🗑️)
removing compat/zlib-uncompress2.o (🗑️)
removing config-list.h (🗑️)
removing config.o (🗑️)
removing connect.o (🗑️)
removing connected.o (🗑️)
removing contrib/scalar/.depend/ (🗑️)
removing convert.o (🗑️)
removing copy.o (🗑️)
removing credential.o (🗑️)
removing csum-file.o (🗑️)
removing ctype.o (🗑️)
removing daemon.o (🗑️)
removing date.o (🗑️)
removing decorate.o (🗑️)
removing delta-islands.o (🗑️)
removing diff-delta.o (🗑️)
removing diff-lib.o (🗑️)
removing diff-merges.o (🗑️)
removing diff-no-index.o (🗑️)
removing diff.o (🗑️)
removing diffcore-break.o (🗑️)
removing diffcore-delta.o (🗑️)
removing diffcore-order.o (🗑️)
removing diffcore-pickaxe.o (🗑️)
removing diffcore-rename.o (🗑️)
removing diffcore-rotate.o (🗑️)
removing dir-iterator.o (🗑️)
removing dir.o (🗑️)
removing editor.o (🗑️)
removing entry.o (🗑️)
removing environment.o (🗑️)
removing ewah/.depend/ (🗑️)
removing ewah/bitmap.o (🗑️)
removing ewah/ewah_bitmap.o (🗑️)
removing ewah/ewah_io.o (🗑️)
removing ewah/ewah_rlw.o (🗑️)
removing exec-cmd.o (🗑️)
removing fetch-negotiator.o (🗑️)
removing fetch-pack.o (🗑️)
removing fmt-merge-msg.o (🗑️)
removing fsck.o (🗑️)
removing fsmonitor.o (🗑️)
removing fuzz-commit-graph.o (🗑️)
removing fuzz-pack-headers.o (🗑️)
removing fuzz-pack-idx.o (🗑️)
removing gettext.o (🗑️)
removing git (🗑️)
removing git-add (🗑️)
removing git-add--interactive (🗑️)
removing git-am (🗑️)
removing git-annotate (🗑️)
removing git-apply (🗑️)
removing git-archimport (🗑️)
removing git-archive (🗑️)
removing git-bisect (🗑️)
removing git-bisect--helper (🗑️)
removing git-blame (🗑️)
removing git-branch (🗑️)
removing git-bugreport (🗑️)
removing git-bundle (🗑️)
removing git-cat-file (🗑️)
removing git-check-attr (🗑️)
removing git-check-ignore (🗑️)
removing git-check-mailmap (🗑️)
removing git-check-ref-format (🗑️)
removing git-checkout (🗑️)
removing git-checkout--worker (🗑️)
removing git-checkout-index (🗑️)
removing git-cherry (🗑️)
removing git-cherry-pick (🗑️)
removing git-clean (🗑️)
removing git-clone (🗑️)
removing git-column (🗑️)
removing git-commit (🗑️)
removing git-commit-graph (🗑️)
removing git-commit-tree (🗑️)
removing git-config (🗑️)
removing git-count-objects (🗑️)
removing git-credential (🗑️)
removing git-credential-cache (🗑️)
removing git-credential-cache--daemon (🗑️)
removing git-credential-store (🗑️)
removing git-cvsexportcommit (🗑️)
removing git-cvsimport (🗑️)
removing git-cvsserver (🗑️)
removing git-daemon (🗑️)
removing git-describe (🗑️)
removing git-diff (🗑️)
removing git-diff-files (🗑️)
removing git-diff-index (🗑️)
removing git-diff-tree (🗑️)
removing git-difftool (🗑️)
removing git-difftool--helper (🗑️)
removing git-env--helper (🗑️)
removing git-fast-export (🗑️)
removing git-fast-import (🗑️)
removing git-fetch (🗑️)
removing git-fetch-pack (🗑️)
removing git-filter-branch (🗑️)
removing git-fmt-merge-msg (🗑️)
removing git-for-each-ref (🗑️)
removing git-for-each-repo (🗑️)
removing git-format-patch (🗑️)
removing git-fsck (🗑️)
removing git-fsck-objects (🗑️)
removing git-gc (🗑️)
removing git-get-tar-commit-id (🗑️)
removing git-grep (🗑️)
removing git-gui/GIT-GUI-VARS (🗑️)
removing git-gui/GIT-VERSION-FILE (🗑️)
removing git-gui/git-gui (🗑️)
removing git-gui/lib/tclIndex (🗑️)
removing git-gui/po/bg.msg (🗑️)
removing git-gui/po/de.msg (🗑️)
removing git-gui/po/el.msg (🗑️)
removing git-gui/po/fr.msg (🗑️)
removing git-gui/po/hu.msg (🗑️)
removing git-gui/po/it.msg (🗑️)
removing git-gui/po/ja.msg (🗑️)
removing git-gui/po/nb.msg (🗑️)
removing git-gui/po/pt_br.msg (🗑️)
removing git-gui/po/pt_pt.msg (🗑️)
removing git-gui/po/ru.msg (🗑️)
removing git-gui/po/sv.msg (🗑️)
removing git-gui/po/vi.msg (🗑️)
removing git-gui/po/zh_cn.msg (🗑️)
removing git-hash-object (🗑️)
removing git-help (🗑️)
removing git-hook (🗑️)
removing git-http-backend (🗑️)
removing git-http-fetch (🗑️)
removing git-http-push (🗑️)
removing git-imap-send (🗑️)
removing git-index-pack (🗑️)
removing git-init (🗑️)
removing git-init-db (🗑️)
removing git-instaweb (🗑️)
removing git-interpret-trailers (🗑️)
removing git-log (🗑️)
removing git-ls-files (🗑️)
removing git-ls-remote (🗑️)
removing git-ls-tree (🗑️)
removing git-mailinfo (🗑️)
removing git-mailsplit (🗑️)
removing git-maintenance (🗑️)
removing git-merge (🗑️)
removing git-merge-base (🗑️)
removing git-merge-file (🗑️)
removing git-merge-index (🗑️)
removing git-merge-octopus (🗑️)
removing git-merge-one-file (🗑️)
removing git-merge-ours (🗑️)
removing git-merge-recursive (🗑️)
removing git-merge-resolve (🗑️)
removing git-merge-subtree (🗑️)
removing git-merge-tree (🗑️)
removing git-mergetool (🗑️)
removing git-mergetool--lib (🗑️)
removing git-mktag (🗑️)
removing git-mktree (🗑️)
removing git-multi-pack-index (🗑️)
removing git-mv (🗑️)
removing git-name-rev (🗑️)
removing git-notes (🗑️)
removing git-p4 (🗑️)
removing git-pack-objects (🗑️)
removing git-pack-redundant (🗑️)
removing git-pack-refs (🗑️)
removing git-patch-id (🗑️)
removing git-prune (🗑️)
removing git-prune-packed (🗑️)
removing git-pull (🗑️)
removing git-push (🗑️)
removing git-quiltimport (🗑️)
removing git-range-diff (🗑️)
removing git-read-tree (🗑️)
removing git-rebase (🗑️)
removing git-receive-pack (🗑️)
removing git-reflog (🗑️)
removing git-remote (🗑️)
removing git-remote-ext (🗑️)
removing git-remote-fd (🗑️)
removing git-remote-ftp (🗑️)
removing git-remote-ftps (🗑️)
removing git-remote-http (🗑️)
removing git-remote-https (🗑️)
removing git-repack (🗑️)
removing git-replace (🗑️)
removing git-request-pull (🗑️)
removing git-rerere (🗑️)
removing git-reset (🗑️)
removing git-restore (🗑️)
removing git-rev-list (🗑️)
removing git-rev-parse (🗑️)
removing git-revert (🗑️)
removing git-rm (🗑️)
removing git-send-email (🗑️)
removing git-send-pack (🗑️)
removing git-sh-i18n (🗑️)
removing git-sh-i18n--envsubst (🗑️)
removing git-sh-setup (🗑️)
removing git-shell (🗑️)
removing git-shortlog (🗑️)
removing git-show (🗑️)
removing git-show-branch (🗑️)
removing git-show-index (🗑️)
removing git-show-ref (🗑️)
removing git-sparse-checkout (🗑️)
removing git-stage (🗑️)
removing git-stash (🗑️)
removing git-status (🗑️)
removing git-stripspace (🗑️)
removing git-submodule (🗑️)
removing git-submodule--helper (🗑️)
removing git-svn (🗑️)
removing git-switch (🗑️)
removing git-symbolic-ref (🗑️)
removing git-tag (🗑️)
removing git-unpack-file (🗑️)
removing git-unpack-objects (🗑️)
removing git-update-index (🗑️)
removing git-update-ref (🗑️)
removing git-update-server-info (🗑️)
removing git-upload-archive (🗑️)
removing git-upload-pack (🗑️)
removing git-var (🗑️)
removing git-verify-commit (🗑️)
removing git-verify-pack (🗑️)
removing git-verify-tag (🗑️)
removing git-web--browse (🗑️)
removing git-whatchanged (🗑️)
removing git-worktree (🗑️)
removing git-write-tree (🗑️)
removing git.o (🗑️)
removing gitk-git/GIT-TCLTK-VARS (🗑️)
removing gitk-git/gitk-wish (🗑️)
removing gitk-git/po/bg.msg (🗑️)
removing gitk-git/po/ca.msg (🗑️)
removing gitk-git/po/de.msg (🗑️)
removing gitk-git/po/es.msg (🗑️)
removing gitk-git/po/fr.msg (🗑️)
removing gitk-git/po/hu.msg (🗑️)
removing gitk-git/po/it.msg (🗑️)
removing gitk-git/po/ja.msg (🗑️)
removing gitk-git/po/pt_br.msg (🗑️)
removing gitk-git/po/pt_pt.msg (🗑️)
removing gitk-git/po/ru.msg (🗑️)
removing gitk-git/po/sv.msg (🗑️)
removing gitk-git/po/vi.msg (🗑️)
removing gitk-git/po/zh_cn.msg (🗑️)
removing gitweb/GITWEB-BUILD-OPTIONS (🗑️)
removing gitweb/gitweb.cgi (🗑️)
removing gitweb/static/gitweb.js (🗑️)
removing gpg-interface.o (🗑️)
removing graph.o (🗑️)
removing grep.o (🗑️)
removing hash-lookup.o (🗑️)
removing hashmap.o (🗑️)
removing help.o (🗑️)
removing hex.o (🗑️)
removing hook-list.h (🗑️)
removing hook.o (🗑️)
removing http-backend.o (🗑️)
removing http-fetch.o (🗑️)
removing http-push.o (🗑️)
removing http-walker.o (🗑️)
removing http.o (🗑️)
removing ident.o (🗑️)
removing imap-send.o (🗑️)
removing json-writer.o (🗑️)
removing kwset.o (🗑️)
removing levenshtein.o (🗑️)
removing libgit.a (🗑️)
removing line-log.o (🗑️)
removing line-range.o (🗑️)
removing linear-assignment.o (🗑️)
removing list-objects-filter-options.o (🗑️)
removing list-objects-filter.o (🗑️)
removing list-objects.o (🗑️)
removing ll-merge.o (🗑️)
removing lockfile.o (🗑️)
removing log-tree.o (🗑️)
removing ls-refs.o (🗑️)
removing mailinfo.o (🗑️)
removing mailmap.o (🗑️)
removing match-trees.o (🗑️)
removing mem-pool.o (🗑️)
removing merge-blobs.o (🗑️)
removing merge-ort-wrappers.o (🗑️)
removing merge-ort.o (🗑️)
removing merge-recursive.o (🗑️)
removing merge.o (🗑️)
removing mergesort.o (🗑️)
removing midx.o (🗑️)
removing name-hash.o (🗑️)
removing negotiator/.depend/ (🗑️)
removing negotiator/default.o (🗑️)
removing negotiator/noop.o (🗑️)
removing negotiator/skipping.o (🗑️)
removing notes-cache.o (🗑️)
removing notes-merge.o (🗑️)
removing notes-utils.o (🗑️)
removing notes.o (🗑️)
removing object-file.o (🗑️)
removing object-name.o (🗑️)
removing object.o (🗑️)
removing oid-array.o (🗑️)
removing oidmap.o (🗑️)
removing oidset.o (🗑️)
removing oidtree.o (🗑️)
removing pack-bitmap-write.o (🗑️)
removing pack-bitmap.o (🗑️)
removing pack-check.o (🗑️)
removing pack-objects.o (🗑️)
removing pack-revindex.o (🗑️)
removing pack-write.o (🗑️)
removing packfile.o (🗑️)
removing pager.o (🗑️)
removing parallel-checkout.o (🗑️)
removing parse-options-cb.o (🗑️)
removing parse-options.o (🗑️)
removing patch-delta.o (🗑️)
removing patch-ids.o (🗑️)
removing path.o (🗑️)
removing pathspec.o (🗑️)
removing perl/build/ (🗑️)
removing pkt-line.o (🗑️)
removing po/build/ (🗑️)
removing preload-index.o (🗑️)
removing pretty.o (🗑️)
removing prio-queue.o (🗑️)
removing progress.o (🗑️)
removing promisor-remote.o (🗑️)
removing prompt.o (🗑️)
removing protocol-caps.o (🗑️)
removing protocol.o (🗑️)
removing prune-packed.o (🗑️)
removing quote.o (🗑️)
removing range-diff.o (🗑️)
removing reachable.o (🗑️)
removing read-cache.o (🗑️)
removing rebase-interactive.o (🗑️)
removing rebase.o (🗑️)
removing ref-filter.o (🗑️)
removing reflog-walk.o (🗑️)
removing reflog.o (🗑️)
removing refs.o (🗑️)
removing refs/.depend/ (🗑️)
removing refs/debug.o (🗑️)
removing refs/files-backend.o (🗑️)
removing refs/iterator.o (🗑️)
removing refs/packed-backend.o (🗑️)
removing refs/ref-cache.o (🗑️)
removing refspec.o (🗑️)
removing reftable/.depend/ (🗑️)
removing reftable/basics.o (🗑️)
removing reftable/basics_test.o (🗑️)
removing reftable/block.o (🗑️)
removing reftable/block_test.o (🗑️)
removing reftable/blocksource.o (🗑️)
removing reftable/dump.o (🗑️)
removing reftable/error.o (🗑️)
removing reftable/generic.o (🗑️)
removing reftable/iter.o (🗑️)
removing reftable/libreftable.a (🗑️)
removing reftable/libreftable_test.a (🗑️)
removing reftable/merged.o (🗑️)
removing reftable/merged_test.o (🗑️)
removing reftable/pq.o (🗑️)
removing reftable/pq_test.o (🗑️)
removing reftable/publicbasics.o (🗑️)
removing reftable/reader.o (🗑️)
removing reftable/readwrite_test.o (🗑️)
removing reftable/record.o (🗑️)
removing reftable/record_test.o (🗑️)
removing reftable/refname.o (🗑️)
removing reftable/refname_test.o (🗑️)
removing reftable/stack.o (🗑️)
removing reftable/stack_test.o (🗑️)
removing reftable/test_framework.o (🗑️)
removing reftable/tree.o (🗑️)
removing reftable/tree_test.o (🗑️)
removing reftable/writer.o (🗑️)
removing remote-curl.o (🗑️)
removing remote.o (🗑️)
removing replace-object.o (🗑️)
removing repo-settings.o (🗑️)
removing repository.o (🗑️)
removing rerere.o (🗑️)
removing reset.o (🗑️)
removing resolve-undo.o (🗑️)
removing revision.o (🗑️)
removing run-command.o (🗑️)
removing send-pack.o (🗑️)
removing sequencer.o (🗑️)
removing serve.o (🗑️)
removing server-info.o (🗑️)
removing setup.o (🗑️)
removing sh-i18n--envsubst.o (🗑️)
removing sha1dc/.depend/ (🗑️)
removing sha1dc/sha1.o (🗑️)
removing sha1dc/ubc_check.o (🗑️)
removing sha1dc_git.o (🗑️)
removing sha256/block/.depend/ (🗑️)
removing sha256/block/sha256.o (🗑️)
removing shallow.o (🗑️)
removing shell.o (🗑️)
removing sideband.o (🗑️)
removing sigchain.o (🗑️)
removing sparse-index.o (🗑️)
removing split-index.o (🗑️)
removing stable-qsort.o (🗑️)
removing strbuf.o (🗑️)
removing streaming.o (🗑️)
removing string-list.o (🗑️)
removing strmap.o (🗑️)
removing strvec.o (🗑️)
removing sub-process.o (🗑️)
removing submodule-config.o (🗑️)
removing submodule.o (🗑️)
removing symlinks.o (🗑️)
removing t/helper/.depend/ (🗑️)
removing t/helper/test-advise.o (🗑️)
removing t/helper/test-bitmap.o (🗑️)
removing t/helper/test-bloom.o (🗑️)
removing t/helper/test-chmtime.o (🗑️)
removing t/helper/test-config.o (🗑️)
removing t/helper/test-crontab.o (🗑️)
removing t/helper/test-csprng.o (🗑️)
removing t/helper/test-ctype.o (🗑️)
removing t/helper/test-date.o (🗑️)
removing t/helper/test-delta.o (🗑️)
removing t/helper/test-dir-iterator.o (🗑️)
removing t/helper/test-drop-caches.o (🗑️)
removing t/helper/test-dump-cache-tree.o (🗑️)
removing t/helper/test-dump-fsmonitor.o (🗑️)
removing t/helper/test-dump-split-index.o (🗑️)
removing t/helper/test-dump-untracked-cache.o (🗑️)
removing t/helper/test-example-decorate.o (🗑️)
removing t/helper/test-fake-ssh (🗑️)
removing t/helper/test-fake-ssh.o (🗑️)
removing t/helper/test-fast-rebase.o (🗑️)
removing t/helper/test-genrandom.o (🗑️)
removing t/helper/test-genzeros.o (🗑️)
removing t/helper/test-getcwd.o (🗑️)
removing t/helper/test-hash-speed.o (🗑️)
removing t/helper/test-hash.o (🗑️)
removing t/helper/test-hashmap.o (🗑️)
removing t/helper/test-index-version.o (🗑️)
removing t/helper/test-json-writer.o (🗑️)
removing t/helper/test-lazy-init-name-hash.o (🗑️)
removing t/helper/test-match-trees.o (🗑️)
removing t/helper/test-mergesort.o (🗑️)
removing t/helper/test-mktemp.o (🗑️)
removing t/helper/test-oid-array.o (🗑️)
removing t/helper/test-oidmap.o (🗑️)
removing t/helper/test-oidtree.o (🗑️)
removing t/helper/test-online-cpus.o (🗑️)
removing t/helper/test-parse-options.o (🗑️)
removing t/helper/test-parse-pathspec-file.o (🗑️)
removing t/helper/test-partial-clone.o (🗑️)
removing t/helper/test-path-utils.o (🗑️)
removing t/helper/test-pcre2-config.o (🗑️)
removing t/helper/test-pkt-line.o (🗑️)
removing t/helper/test-prio-queue.o (🗑️)
removing t/helper/test-proc-receive.o (🗑️)
removing t/helper/test-progress.o (🗑️)
removing t/helper/test-reach.o (🗑️)
removing t/helper/test-read-cache.o (🗑️)
removing t/helper/test-read-graph.o (🗑️)
removing t/helper/test-read-midx.o (🗑️)
removing t/helper/test-ref-store.o (🗑️)
removing t/helper/test-reftable.o (🗑️)
removing t/helper/test-regex.o (🗑️)
removing t/helper/test-repository.o (🗑️)
removing t/helper/test-revision-walking.o (🗑️)
removing t/helper/test-run-command.o (🗑️)
removing t/helper/test-scrap-cache-tree.o (🗑️)
removing t/helper/test-serve-v2.o (🗑️)
removing t/helper/test-sha1.o (🗑️)
removing t/helper/test-sha256.o (🗑️)
removing t/helper/test-sigchain.o (🗑️)
removing t/helper/test-simple-ipc.o (🗑️)
removing t/helper/test-strcmp-offset.o (🗑️)
removing t/helper/test-string-list.o (🗑️)
removing t/helper/test-submodule-config.o (🗑️)
removing t/helper/test-submodule-nested-repo-config.o (🗑️)
removing t/helper/test-subprocess.o (🗑️)
removing t/helper/test-tool (🗑️)
removing t/helper/test-tool.o (🗑️)
removing t/helper/test-trace2.o (🗑️)
removing t/helper/test-urlmatch-normalization.o (🗑️)
removing t/helper/test-userdiff.o (🗑️)
removing t/helper/test-wildmatch.o (🗑️)
removing t/helper/test-windows-named-pipe.o (🗑️)
removing t/helper/test-write-cache.o (🗑️)
removing t/helper/test-xml-encode.o (🗑️)
removing tag.o (🗑️)
removing tempfile.o (🗑️)
removing templates/blt/ (🗑️)
removing templates/boilerplates.made (🗑️)
removing thread-utils.o (🗑️)
removing tmp-objdir.o (🗑️)
removing trace.o (🗑️)
removing trace2.o (🗑️)
removing trace2/.depend/ (🗑️)
removing trace2/tr2_cfg.o (🗑️)
removing trace2/tr2_cmd_name.o (🗑️)
removing trace2/tr2_dst.o (🗑️)
removing trace2/tr2_sid.o (🗑️)
removing trace2/tr2_sysenv.o (🗑️)
removing trace2/tr2_tbuf.o (🗑️)
removing trace2/tr2_tgt_event.o (🗑️)
removing trace2/tr2_tgt_normal.o (🗑️)
removing trace2/tr2_tgt_perf.o (🗑️)
removing trace2/tr2_tls.o (🗑️)
removing trailer.o (🗑️)
removing transport-helper.o (🗑️)
removing transport.o (🗑️)
removing tree-diff.o (🗑️)
removing tree-walk.o (🗑️)
removing tree.o (🗑️)
removing unix-socket.o (🗑️)
removing unix-stream-server.o (🗑️)
removing unpack-trees.o (🗑️)
removing upload-pack.o (🗑️)
removing url.o (🗑️)
removing urlmatch.o (🗑️)
removing usage.o (🗑️)
removing userdiff.o (🗑️)
removing utf8.o (🗑️)
removing varint.o (🗑️)
removing version.o (🗑️)
removing versioncmp.o (🗑️)
removing walker.o (🗑️)
removing wildmatch.o (🗑️)
removing worktree.o (🗑️)
removing wrapper.o (🗑️)
removing write-or-die.o (🗑️)
removing ws.o (🗑️)
removing wt-status.o (🗑️)
removing xdiff-interface.o (🗑️)
removing xdiff/.depend/ (🗑️)
removing xdiff/lib.a (🗑️)
removing xdiff/xdiffi.o (🗑️)
removing xdiff/xemit.o (🗑️)
removing xdiff/xhistogram.o (🗑️)
removing xdiff/xmerge.o (🗑️)
removing xdiff/xpatience.o (🗑️)
removing xdiff/xprepare.o (🗑️)
removing xdiff/xutils.o (🗑️)
removing zlib.o (🗑️)
ek@apok:~/src/git ((0f5e885173...)|BISECTING)$ git bisect new
Bisecting: 37 revisions left to test after this (roughly 5 steps)
[e8926670d4167c664f7dcbbec1c1887c51b5f08f] Merge branch 'ds/t7700-kept-pack-test'
ek@apok:~/src/git ((e8926670d4...)|BISECTING)$ make prefix="$HOME/mygit" -j5
GIT_VERSION = 2.35.1.771.ge8926670d4
* new build flags
CC fuzz-commit-graph.o
CC fuzz-pack-headers.o
CC fuzz-pack-idx.o
CC daemon.o
CC common-main.o
CC abspath.o
CC add-interactive.o
* new link flags
CC add-patch.o
CC advice.o
CC alias.o
CC alloc.o
CC apply.o
CC archive-tar.o
CC archive-zip.o
CC archive.o
* new prefix flags
CC base85.o
CC bisect.o
CC blame.o
CC blob.o
CC bloom.o
CC branch.o
CC bulk-checkin.o
CC bundle.o
CC cache-tree.o
CC cbtree.o
CC chdir-notify.o
CC checkout.o
CC chunk-format.o
CC color.o
CC column.o
CC combine-diff.o
CC commit-graph.o
CC commit-reach.o
CC commit.o
CC compat/obstack.o
CC compat/terminal.o
CC compat/zlib-uncompress2.o
CC config.o
CC connect.o
CC connected.o
CC convert.o
CC copy.o
CC credential.o
CC csum-file.o
CC ctype.o
CC date.o
CC decorate.o
CC delta-islands.o
CC diff-delta.o
CC diff-merges.o
CC diff-lib.o
CC diff-no-index.o
CC diff.o
CC diffcore-break.o
CC diffcore-delta.o
CC diffcore-order.o
CC diffcore-pickaxe.o
CC diffcore-rename.o
CC diffcore-rotate.o
CC dir-iterator.o
CC dir.o
CC editor.o
CC entry.o
CC environment.o
CC ewah/bitmap.o
CC ewah/ewah_bitmap.o
CC ewah/ewah_io.o
CC ewah/ewah_rlw.o
CC exec-cmd.o
CC fetch-negotiator.o
CC fetch-pack.o
CC fmt-merge-msg.o
CC fsck.o
CC fsmonitor.o
CC gettext.o
CC gpg-interface.o
CC graph.o
CC grep.o
CC hash-lookup.o
CC hashmap.o
GEN command-list.h
CC hex.o
CC hook.o
CC ident.o
CC json-writer.o
CC kwset.o
CC levenshtein.o
CC line-log.o
CC line-range.o
CC linear-assignment.o
CC list-objects-filter-options.o
CC list-objects-filter.o
CC list-objects.o
CC ll-merge.o
CC lockfile.o
CC log-tree.o
CC ls-refs.o
CC mailinfo.o
CC mailmap.o
CC match-trees.o
CC mem-pool.o
CC merge-blobs.o
CC merge-ort.o
CC merge-ort-wrappers.o
CC merge-recursive.o
CC merge.o
CC mergesort.o
CC midx.o
CC name-hash.o
CC negotiator/default.o
CC negotiator/noop.o
CC negotiator/skipping.o
CC notes-cache.o
CC notes-merge.o
CC notes-utils.o
CC notes.o
CC object-file.o
CC object-name.o
CC object.o
CC oid-array.o
CC oidmap.o
CC oidset.o
CC oidtree.o
CC pack-bitmap-write.o
CC pack-bitmap.o
CC pack-check.o
CC pack-objects.o
CC pack-revindex.o
CC pack-write.o
CC packfile.o
CC pager.o
CC parallel-checkout.o
CC parse-options-cb.o
CC parse-options.o
CC patch-delta.o
CC patch-ids.o
CC path.o
CC pathspec.o
CC pkt-line.o
CC preload-index.o
CC pretty.o
CC prio-queue.o
CC progress.o
CC promisor-remote.o
CC prompt.o
CC protocol.o
CC protocol-caps.o
CC prune-packed.o
CC quote.o
CC range-diff.o
CC reachable.o
CC read-cache.o
CC rebase-interactive.o
CC rebase.o
CC ref-filter.o
CC reflog-walk.o
CC reflog.o
CC refs.o
CC refs/debug.o
CC refs/files-backend.o
CC refs/iterator.o
CC refs/packed-backend.o
CC refs/ref-cache.o
CC refspec.o
CC remote.o
CC replace-object.o
CC repo-settings.o
CC repository.o
CC rerere.o
CC reset.o
CC resolve-undo.o
CC revision.o
CC run-command.o
CC send-pack.o
CC sequencer.o
CC serve.o
CC server-info.o
CC setup.o
CC shallow.o
CC sideband.o
CC sigchain.o
CC sparse-index.o
CC split-index.o
CC stable-qsort.o
CC strbuf.o
CC streaming.o
CC string-list.o
CC strmap.o
CC strvec.o
CC sub-process.o
CC submodule-config.o
CC submodule.o
CC symlinks.o
CC tag.o
CC tempfile.o
CC thread-utils.o
CC tmp-objdir.o
CC trace.o
CC trace2.o
CC trace2/tr2_cfg.o
CC trace2/tr2_cmd_name.o
CC trace2/tr2_dst.o
CC trace2/tr2_sid.o
CC trace2/tr2_sysenv.o
CC trace2/tr2_tbuf.o
CC trace2/tr2_tgt_event.o
CC trace2/tr2_tgt_normal.o
CC trace2/tr2_tgt_perf.o
CC trace2/tr2_tls.o
CC trailer.o
CC transport-helper.o
CC transport.o
CC tree-diff.o
CC tree-walk.o
CC tree.o
CC unpack-trees.o
CC upload-pack.o
CC url.o
CC urlmatch.o
CC usage.o
CC userdiff.o
CC utf8.o
CC varint.o
CC versioncmp.o
CC walker.o
CC wildmatch.o
CC worktree.o
CC wrapper.o
CC write-or-die.o
CC ws.o
CC wt-status.o
CC xdiff-interface.o
CC zlib.o
CC unix-socket.o
CC unix-stream-server.o
CC compat/simple-ipc/ipc-shared.o
CC compat/simple-ipc/ipc-unix-socket.o
CC sha1dc_git.o
CC sha1dc/sha1.o
CC sha1dc/ubc_check.o
CC sha256/block/sha256.o
CC compat/linux/procinfo.o
CC compat/fopen.o
CC compat/strlcpy.o
CC compat/qsort_s.o
CC xdiff/xdiffi.o
CC xdiff/xemit.o
CC xdiff/xhistogram.o
CC xdiff/xmerge.o
CC xdiff/xpatience.o
CC xdiff/xprepare.o
CC xdiff/xutils.o
CC reftable/basics.o
CC reftable/error.o
CC reftable/block.o
CC reftable/blocksource.o
CC reftable/iter.o
CC reftable/publicbasics.o
CC reftable/merged.o
CC reftable/pq.o
CC reftable/reader.o
CC reftable/record.o
CC reftable/refname.o
CC reftable/generic.o
CC reftable/stack.o
CC reftable/tree.o
CC reftable/writer.o
CC http-backend.o
CC imap-send.o
CC http.o
CC sh-i18n--envsubst.o
CC shell.o
CC http-walker.o
CC http-fetch.o
CC http-push.o
CC remote-curl.o
* new script parameters
* new perl-specific parameters
* new Python interpreter location
GEN git-instaweb
CC git.o
CC builtin/add.o
CC builtin/am.o
CC builtin/annotate.o
CC builtin/apply.o
CC builtin/archive.o
CC builtin/bisect--helper.o
CC builtin/blame.o
CC builtin/branch.o
GEN hook-list.h
CC builtin/bundle.o
CC builtin/cat-file.o
CC builtin/check-attr.o
CC builtin/check-ignore.o
CC builtin/check-mailmap.o
CC builtin/check-ref-format.o
CC builtin/checkout--worker.o
CC builtin/checkout-index.o
CC builtin/checkout.o
CC builtin/clean.o
CC builtin/clone.o
CC builtin/column.o
CC builtin/commit-graph.o
CC builtin/commit-tree.o
CC builtin/commit.o
CC builtin/config.o
CC builtin/count-objects.o
CC builtin/credential-cache--daemon.o
CC builtin/credential-cache.o
CC builtin/credential-store.o
CC builtin/credential.o
CC builtin/describe.o
CC builtin/diff-files.o
CC builtin/diff-index.o
CC builtin/diff-tree.o
CC builtin/diff.o
CC builtin/difftool.o
CC builtin/env--helper.o
CC builtin/fast-export.o
CC builtin/fast-import.o
CC builtin/fetch-pack.o
CC builtin/fetch.o
CC builtin/fmt-merge-msg.o
CC builtin/for-each-ref.o
CC builtin/for-each-repo.o
CC builtin/fsck.o
CC builtin/gc.o
CC builtin/get-tar-commit-id.o
CC builtin/grep.o
CC builtin/hash-object.o
GEN config-list.h
CC builtin/hook.o
CC builtin/index-pack.o
CC builtin/init-db.o
CC builtin/interpret-trailers.o
CC builtin/log.o
CC builtin/ls-files.o
CC builtin/ls-remote.o
CC builtin/ls-tree.o
CC builtin/mailinfo.o
CC builtin/mailsplit.o
CC builtin/merge-base.o
CC builtin/merge-file.o
CC builtin/merge-index.o
CC builtin/merge-ours.o
CC builtin/merge-recursive.o
CC builtin/merge-tree.o
CC builtin/merge.o
CC builtin/mktag.o
CC builtin/mktree.o
CC builtin/multi-pack-index.o
CC builtin/mv.o
CC builtin/name-rev.o
CC builtin/notes.o
CC builtin/pack-objects.o
CC builtin/pack-redundant.o
CC builtin/pack-refs.o
CC builtin/patch-id.o
CC builtin/prune-packed.o
CC builtin/prune.o
CC builtin/pull.o
CC builtin/push.o
CC builtin/range-diff.o
CC builtin/read-tree.o
CC builtin/rebase.o
CC builtin/receive-pack.o
CC builtin/reflog.o
CC builtin/remote-ext.o
CC builtin/remote-fd.o
CC builtin/remote.o
CC builtin/repack.o
CC builtin/replace.o
CC builtin/rerere.o
CC builtin/reset.o
CC builtin/rev-list.o
CC builtin/rev-parse.o
CC builtin/revert.o
CC builtin/rm.o
CC builtin/send-pack.o
CC builtin/shortlog.o
CC builtin/show-branch.o
CC builtin/show-index.o
CC builtin/show-ref.o
CC builtin/sparse-checkout.o
CC builtin/stash.o
CC builtin/stripspace.o
CC builtin/submodule--helper.o
CC builtin/symbolic-ref.o
CC builtin/tag.o
CC builtin/unpack-file.o
CC builtin/unpack-objects.o
CC builtin/update-index.o
CC builtin/update-ref.o
CC builtin/update-server-info.o
CC builtin/upload-archive.o
CC builtin/upload-pack.o
CC builtin/var.o
CC builtin/verify-commit.o
CC builtin/verify-pack.o
CC builtin/verify-tag.o
CC builtin/worktree.o
CC builtin/write-tree.o
GEN git-mergetool--lib
GEN git-sh-i18n
GEN git-sh-setup
CC attr.o
CC help.o
CC version.o
AR xdiff/lib.a
AR reftable/libreftable.a
GEN git-bisect
GEN git-difftool--helper
GEN git-filter-branch
GEN git-merge-octopus
GEN git-merge-one-file
GEN git-merge-resolve
GEN git-mergetool
GEN git-quiltimport
GEN git-request-pull
GEN git-submodule
GEN git-web--browse
GEN GIT-PERL-HEADER
GEN git-p4
CC builtin/bugreport.o
CC builtin/help.o
GEN git-add--interactive
GEN git-archimport
GEN git-cvsexportcommit
GEN git-cvsimport
GEN git-cvsserver
GEN git-send-email
GEN git-svn
AR libgit.a
LINK git-daemon
LINK git-http-backend
LINK git-imap-send
LINK git-sh-i18n--envsubst
LINK git-shell
LINK git-http-fetch
LINK git-http-push
LINK git-remote-http
LINK git
LN/CP git-remote-https
LN/CP git-remote-ftp
LN/CP git-remote-ftps
BUILTIN git-add
BUILTIN git-am
BUILTIN git-annotate
BUILTIN git-apply
BUILTIN git-archive
BUILTIN git-bisect--helper
BUILTIN git-blame
BUILTIN git-branch
BUILTIN git-bugreport
BUILTIN git-cat-file
BUILTIN git-bundle
BUILTIN git-check-attr
BUILTIN git-check-ignore
BUILTIN git-check-mailmap
BUILTIN git-check-ref-format
BUILTIN git-checkout--worker
BUILTIN git-checkout-index
BUILTIN git-checkout
BUILTIN git-clean
BUILTIN git-clone
BUILTIN git-column
BUILTIN git-commit-graph
BUILTIN git-commit-tree
BUILTIN git-config
BUILTIN git-commit
BUILTIN git-count-objects
BUILTIN git-credential-cache--daemon
BUILTIN git-credential-cache
BUILTIN git-credential-store
BUILTIN git-credential
BUILTIN git-describe
BUILTIN git-diff-files
BUILTIN git-diff-index
BUILTIN git-diff-tree
BUILTIN git-diff
BUILTIN git-difftool
BUILTIN git-env--helper
BUILTIN git-fast-export
BUILTIN git-fast-import
BUILTIN git-fetch-pack
BUILTIN git-fetch
BUILTIN git-fmt-merge-msg
BUILTIN git-for-each-ref
BUILTIN git-fsck
BUILTIN git-for-each-repo
BUILTIN git-gc
BUILTIN git-get-tar-commit-id
BUILTIN git-grep
BUILTIN git-hash-object
BUILTIN git-help
BUILTIN git-hook
BUILTIN git-index-pack
BUILTIN git-init-db
BUILTIN git-interpret-trailers
BUILTIN git-log
BUILTIN git-ls-remote
BUILTIN git-ls-tree
BUILTIN git-mailinfo
BUILTIN git-ls-files
BUILTIN git-mailsplit
BUILTIN git-merge-file
BUILTIN git-merge-base
BUILTIN git-merge-index
BUILTIN git-merge-ours
BUILTIN git-merge-recursive
BUILTIN git-merge-tree
BUILTIN git-merge
BUILTIN git-mktag
BUILTIN git-mktree
BUILTIN git-mv
BUILTIN git-multi-pack-index
BUILTIN git-name-rev
BUILTIN git-notes
BUILTIN git-pack-objects
BUILTIN git-pack-redundant
BUILTIN git-pack-refs
BUILTIN git-patch-id
BUILTIN git-prune-packed
BUILTIN git-prune
BUILTIN git-pull
BUILTIN git-push
BUILTIN git-range-diff
BUILTIN git-read-tree
BUILTIN git-rebase
BUILTIN git-receive-pack
BUILTIN git-reflog
BUILTIN git-remote-ext
BUILTIN git-remote-fd
BUILTIN git-repack
BUILTIN git-remote
BUILTIN git-replace
BUILTIN git-rerere
BUILTIN git-rev-list
BUILTIN git-reset
BUILTIN git-rev-parse
BUILTIN git-revert
BUILTIN git-rm
BUILTIN git-send-pack
BUILTIN git-shortlog
BUILTIN git-show-branch
BUILTIN git-show-index
BUILTIN git-show-ref
BUILTIN git-sparse-checkout
BUILTIN git-stash
BUILTIN git-stripspace
BUILTIN git-submodule--helper
BUILTIN git-symbolic-ref
BUILTIN git-tag
BUILTIN git-unpack-file
BUILTIN git-unpack-objects
BUILTIN git-update-index
BUILTIN git-update-ref
BUILTIN git-update-server-info
BUILTIN git-upload-archive
BUILTIN git-upload-pack
BUILTIN git-var
BUILTIN git-verify-commit
BUILTIN git-verify-pack
BUILTIN git-verify-tag
BUILTIN git-worktree
BUILTIN git-write-tree
BUILTIN git-cherry
BUILTIN git-cherry-pick
BUILTIN git-format-patch
BUILTIN git-fsck-objects
BUILTIN git-init
BUILTIN git-maintenance
BUILTIN git-merge-subtree
BUILTIN git-restore
BUILTIN git-stage
BUILTIN git-status
BUILTIN git-show
BUILTIN git-switch
BUILTIN git-whatchanged
SUBDIR git-gui
GITGUI_VERSION = 0.21.0.99.gdf4f9
* new locations or Tcl/Tk interpreter
MSGFMT po/bg.msg MSGFMT po/de.msg MSGFMT po/el.msg MSGFMT po/fr.msg MSGFMT po/hu.msg 579 translated.
381 translated, 4 fuzzy, 6 untranslated.
565 translated.
520 translated.
MSGFMT po/ja.msg MSGFMT po/nb.msg MSGFMT po/it.msg MSGFMT po/pt_br.msg 514 translated.
MSGFMT po/pt_pt.msg 474 translated, 39 untranslated.
546 translated, 1 untranslated.
MSGFMT po/ru.msg MSGFMT po/sv.msg 550 translated.
MSGFMT po/vi.msg 519 translated, 1 untranslated.
MSGFMT po/zh_cn.msg 520 translated.
579 translated.
547 translated.
GEN git-gui
INDEX lib/
543 translated.
366 translated, 7 fuzzy, 17 untranslated.
SUBDIR gitk-git
Generating catalog po/bg.msg
* new Tcl/Tk interpreter location
Generating catalog po/ca.msg
Generating catalog po/de.msg
msgfmt --statistics --tcl po/bg.po -l bg -d po/
msgfmt --statistics --tcl po/ca.po -l ca -d po/
Generating catalog po/es.msg
msgfmt --statistics --tcl po/de.po -l de -d po/
msgfmt --statistics --tcl po/es.po -l es -d po/
307 translated messages307 translated messages.
317 translated messages.
.
184 translated messages, 46 fuzzy translations, 77 untranslated messages.
Generating catalog po/fr.msg
msgfmt --statistics --tcl po/fr.po -l fr -d po/
Generating catalog po/hu.msg
msgfmt --statistics --tcl po/hu.po -l hu -d po/
Generating catalog po/it.msg
msgfmt --statistics --tcl po/it.po -l it -d po/
311 translated messages.
277 translated messages, 18 fuzzy translations, 12 untranslated messages.
Generating catalog po/ja.msg
msgfmt --statistics --tcl po/ja.po -l ja -d po/
Generating catalog po/pt_pt.msg
Generating catalog po/pt_br.msg
msgfmt --statistics --tcl po/pt_br.po -l pt_br -d po/
msgfmt --statistics --tcl po/pt_pt.po -l pt_pt -d po/
Generating catalog po/ru.msg
msgfmt --statistics --tcl po/ru.po -l ru -d po/
274 translated messages, 17 fuzzy translations, 16 untranslated messages.
311 translated messages.
Generating catalog po/sv.msg
311 translated messages.
msgfmt --statistics --tcl po/sv.po -l sv -d po/
Generating catalog po/vi.msg
279 translated messages, 16 fuzzy translations, 12 untranslated messages.
msgfmt --statistics --tcl po/vi.po -l vi -d po/
Generating catalog po/zh_cn.msg
msgfmt --statistics --tcl po/zh_cn.po -l zh_cn -d po/
317 translated messages.
GEN gitk-wish
311 translated messages.
317 translated messages.
307 translated messages.
SUBDIR templates
MKDIR -p po/build/locale/bg/LC_MESSAGES
MSGFMT po/build/locale/bg/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/ca/LC_MESSAGES
MSGFMT po/build/locale/ca/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/de/LC_MESSAGES
MSGFMT po/build/locale/de/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/el/LC_MESSAGES
MSGFMT po/build/locale/el/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/es/LC_MESSAGES
MSGFMT po/build/locale/es/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/fr/LC_MESSAGES
MSGFMT po/build/locale/fr/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/id/LC_MESSAGES
MSGFMT po/build/locale/id/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/is/LC_MESSAGES
MSGFMT po/build/locale/is/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/it/LC_MESSAGES
MSGFMT po/build/locale/it/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/ko/LC_MESSAGES
MSGFMT po/build/locale/ko/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/pl/LC_MESSAGES
MSGFMT po/build/locale/pl/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/pt_PT/LC_MESSAGES
MSGFMT po/build/locale/pt_PT/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/ru/LC_MESSAGES
MSGFMT po/build/locale/ru/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/sv/LC_MESSAGES
MSGFMT po/build/locale/sv/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/tr/LC_MESSAGES
MSGFMT po/build/locale/tr/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/vi/LC_MESSAGES
MSGFMT po/build/locale/vi/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/zh_CN/LC_MESSAGES
MSGFMT po/build/locale/zh_CN/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/zh_TW/LC_MESSAGES
MSGFMT po/build/locale/zh_TW/LC_MESSAGES/git.mo
MKDIR -p perl/build/lib
GEN perl/build/lib/Git.pm
MKDIR -p perl/build/lib/Git
GEN perl/build/lib/Git/LoadCPAN.pm
GEN perl/build/lib/Git/IndexInfo.pm
GEN perl/build/lib/Git/Packet.pm
GEN perl/build/lib/Git/I18N.pm
GEN perl/build/lib/Git/SVN.pm
MKDIR -p perl/build/lib/Git/LoadCPAN
GEN perl/build/lib/Git/LoadCPAN/Error.pm
MKDIR -p perl/build/lib/Git/SVN
GEN perl/build/lib/Git/SVN/Fetcher.pm
GEN perl/build/lib/Git/SVN/GlobSpec.pm
GEN perl/build/lib/Git/SVN/Log.pm
GEN perl/build/lib/Git/SVN/Editor.pm
GEN perl/build/lib/Git/SVN/Migration.pm
GEN perl/build/lib/Git/SVN/Prompt.pm
GEN perl/build/lib/Git/SVN/Ra.pm
GEN perl/build/lib/Git/SVN/Utils.pm
MKDIR -p perl/build/lib/Git/LoadCPAN/Mail
GEN perl/build/lib/Git/LoadCPAN/Mail/Address.pm
MKDIR -p perl/build/lib/Git/SVN/Memoize
GEN perl/build/lib/Git/SVN/Memoize/YAML.pm
MKDIR -p perl/build/lib/FromCPAN
MKDIR -p perl/build/lib/FromCPAN/Mail
GEN perl/build/lib/FromCPAN/Error.pm
GEN perl/build/lib/FromCPAN/Mail/Address.pm
CC t/helper/test-fake-ssh.o
CC reftable/basics_test.o
CC reftable/block_test.o
CC reftable/dump.o
CC reftable/merged_test.o
CC reftable/pq_test.o
CC reftable/record_test.o
CC reftable/readwrite_test.o
CC reftable/refname_test.o
CC reftable/stack_test.o
CC reftable/test_framework.o
CC reftable/tree_test.o
CC t/helper/test-tool.o
CC t/helper/test-advise.o
CC t/helper/test-bitmap.o
CC t/helper/test-bloom.o
CC t/helper/test-chmtime.o
CC t/helper/test-config.o
CC t/helper/test-crontab.o
CC t/helper/test-csprng.o
CC t/helper/test-ctype.o
CC t/helper/test-date.o
CC t/helper/test-delta.o
CC t/helper/test-dir-iterator.o
CC t/helper/test-drop-caches.o
CC t/helper/test-dump-cache-tree.o
CC t/helper/test-dump-fsmonitor.o
CC t/helper/test-dump-split-index.o
CC t/helper/test-dump-untracked-cache.o
CC t/helper/test-example-decorate.o
CC t/helper/test-fast-rebase.o
CC t/helper/test-genrandom.o
CC t/helper/test-genzeros.o
CC t/helper/test-getcwd.o
CC t/helper/test-hash-speed.o
CC t/helper/test-hash.o
CC t/helper/test-hashmap.o
CC t/helper/test-index-version.o
CC t/helper/test-json-writer.o
CC t/helper/test-lazy-init-name-hash.o
CC t/helper/test-match-trees.o
CC t/helper/test-mergesort.o
CC t/helper/test-mktemp.o
CC t/helper/test-oid-array.o
CC t/helper/test-oidmap.o
CC t/helper/test-oidtree.o
CC t/helper/test-online-cpus.o
CC t/helper/test-parse-options.o
CC t/helper/test-parse-pathspec-file.o
CC t/helper/test-partial-clone.o
CC t/helper/test-path-utils.o
CC t/helper/test-pcre2-config.o
CC t/helper/test-pkt-line.o
CC t/helper/test-prio-queue.o
CC t/helper/test-proc-receive.o
CC t/helper/test-progress.o
CC t/helper/test-reach.o
CC t/helper/test-read-cache.o
CC t/helper/test-read-graph.o
CC t/helper/test-read-midx.o
CC t/helper/test-ref-store.o
CC t/helper/test-reftable.o
CC t/helper/test-regex.o
CC t/helper/test-repository.o
CC t/helper/test-revision-walking.o
CC t/helper/test-run-command.o
CC t/helper/test-scrap-cache-tree.o
CC t/helper/test-serve-v2.o
CC t/helper/test-sha1.o
CC t/helper/test-sha256.o
CC t/helper/test-sigchain.o
CC t/helper/test-simple-ipc.o
CC t/helper/test-strcmp-offset.o
CC t/helper/test-string-list.o
CC t/helper/test-submodule-config.o
CC t/helper/test-submodule-nested-repo-config.o
CC t/helper/test-subprocess.o
CC t/helper/test-trace2.o
CC t/helper/test-urlmatch-normalization.o
CC t/helper/test-userdiff.o
CC t/helper/test-wildmatch.o
CC t/helper/test-windows-named-pipe.o
CC t/helper/test-write-cache.o
CC t/helper/test-xml-encode.o
MKDIR -p bin-wrappers
GEN bin-wrappers/git
GEN bin-wrappers/git-receive-pack
GEN bin-wrappers/git-shell
GEN bin-wrappers/git-upload-archive
GEN bin-wrappers/git-upload-pack
GEN bin-wrappers/git-cvsserver
GEN bin-wrappers/test-fake-ssh
GEN bin-wrappers/test-tool
AR reftable/libreftable_test.a
LINK t/helper/test-fake-ssh
LINK t/helper/test-tool
ek@apok:~/src/git ((e8926670d4...)|BISECTING)$ make prefix="$HOME/mygit" install
SUBDIR git-gui
SUBDIR gitk-git
SUBDIR templates
install -d -m 755 '/home/ek/mygit/bin'
install -d -m 755 '/home/ek/mygit/libexec/git-core'
install git-daemon git-http-backend git-imap-send git-sh-i18n--envsubst git-shell git-http-fetch git-http-push git-remote-http git-remote-https git-remote-ftp git-remote-ftps '/home/ek/mygit/libexec/git-core'
install git-bisect git-difftool--helper git-filter-branch git-merge-octopus git-merge-one-file git-merge-resolve git-mergetool git-quiltimport git-request-pull git-submodule git-web--browse git-add--interactive git-archimport git-cvsexportcommit git-cvsimport git-cvsserver git-send-email git-svn git-p4 git-instaweb '/home/ek/mygit/libexec/git-core'
install -m 644 git-mergetool--lib git-sh-i18n git-sh-setup '/home/ek/mygit/libexec/git-core'
install git git-receive-pack git-shell git-upload-archive git-upload-pack '/home/ek/mygit/bin'
install git-cvsserver '/home/ek/mygit/bin'
make -C templates DESTDIR='' install
make[1]: Entering directory '/home/ek/src/git/templates'
install -d -m 755 '/home/ek/mygit/share/git-core/templates'
(cd blt && tar cf - .) | \
(cd '/home/ek/mygit/share/git-core/templates' && umask 022 && tar xof -)
make[1]: Leaving directory '/home/ek/src/git/templates'
install -d -m 755 '/home/ek/mygit/libexec/git-core/mergetools'
install -m 644 mergetools/* '/home/ek/mygit/libexec/git-core/mergetools'
install -d -m 755 '/home/ek/mygit/share/locale'
(cd po/build/locale && tar cf - .) | \
(cd '/home/ek/mygit/share/locale' && umask 022 && tar xof -)
install -d -m 755 '/home/ek/mygit/share/perl5'
(cd perl/build/lib && tar cf - .) | \
(cd '/home/ek/mygit/share/perl5' && umask 022 && tar xof -)
make -C gitweb install
make[1]: Entering directory '/home/ek/src/git/gitweb'
make[2]: Entering directory '/home/ek/src/git'
make[2]: 'GIT-VERSION-FILE' is up to date.
make[2]: Leaving directory '/home/ek/src/git'
GEN gitweb.cgi
GEN static/gitweb.js
install -d -m 755 '/home/ek/mygit/share/gitweb'
install -m 755 gitweb.cgi '/home/ek/mygit/share/gitweb'
install -d -m 755 '/home/ek/mygit/share/gitweb/static'
install -m 644 static/gitweb.js static/gitweb.css static/git-logo.png static/git-favicon.png '/home/ek/mygit/share/gitweb/static'
make[1]: Leaving directory '/home/ek/src/git/gitweb'
make -C gitk-git install
make[1]: Entering directory '/home/ek/src/git/gitk-git'
install -d -m 755 '/home/ek/mygit/bin'
install -m 755 gitk-wish '/home/ek/mygit/bin'/gitk
install -d -m 755 '/home/ek/mygit/share/gitk/lib/msgs'
install -m 644 po/bg.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/ca.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/de.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/es.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/fr.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/hu.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/it.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/ja.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/pt_br.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/pt_pt.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/ru.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/sv.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/vi.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/zh_cn.msg '/home/ek/mygit/share/gitk/lib/msgs' && true
make[1]: Leaving directory '/home/ek/src/git/gitk-git'
make -C git-gui gitexecdir='/home/ek/mygit/libexec/git-core' install
make[1]: Entering directory '/home/ek/src/git/git-gui'
DEST /home/ek/mygit/libexec/git-core
INSTALL 755 git-gui
INSTALL 755 git-gui--askpass
LINK git-citool -> git-gui
DEST /home/ek/mygit/share/git-gui/lib
INSTALL 644 tclIndex
INSTALL 644 about.tcl
INSTALL 644 blame.tcl
INSTALL 644 branch_checkout.tcl
INSTALL 644 branch_create.tcl
INSTALL 644 branch_delete.tcl
INSTALL 644 branch_rename.tcl
INSTALL 644 branch.tcl
INSTALL 644 browser.tcl
INSTALL 644 checkout_op.tcl
INSTALL 644 choose_font.tcl
INSTALL 644 choose_repository.tcl
INSTALL 644 choose_rev.tcl
INSTALL 644 chord.tcl
INSTALL 644 class.tcl
INSTALL 644 commit.tcl
INSTALL 644 console.tcl
INSTALL 644 database.tcl
INSTALL 644 date.tcl
INSTALL 644 diff.tcl
INSTALL 644 encoding.tcl
INSTALL 644 error.tcl
INSTALL 644 index.tcl
INSTALL 644 line.tcl
INSTALL 644 logo.tcl
INSTALL 644 merge.tcl
INSTALL 644 mergetool.tcl
INSTALL 644 option.tcl
INSTALL 644 remote_add.tcl
INSTALL 644 remote_branch_delete.tcl
INSTALL 644 remote.tcl
INSTALL 644 search.tcl
INSTALL 644 shortcut.tcl
INSTALL 644 spellcheck.tcl
INSTALL 644 sshkey.tcl
INSTALL 644 status_bar.tcl
INSTALL 644 themed.tcl
INSTALL 644 tools_dlg.tcl
INSTALL 644 tools.tcl
INSTALL 644 transport.tcl
INSTALL 644 win32.tcl
INSTALL 644 git-gui.ico
INSTALL 644 win32_shortcut.js
DEST /home/ek/mygit/share/git-gui/lib/msgs
INSTALL 644 bg.msg
INSTALL 644 de.msg
INSTALL 644 el.msg
INSTALL 644 fr.msg
INSTALL 644 hu.msg
INSTALL 644 it.msg
INSTALL 644 ja.msg
INSTALL 644 nb.msg
INSTALL 644 pt_br.msg
INSTALL 644 pt_pt.msg
INSTALL 644 ru.msg
INSTALL 644 sv.msg
INSTALL 644 vi.msg
INSTALL 644 zh_cn.msg
make[1]: Leaving directory '/home/ek/src/git/git-gui'
bindir=$(cd '/home/ek/mygit/bin' && pwd) && \
execdir=$(cd '/home/ek/mygit/libexec/git-core' && pwd) && \
destdir_from_execdir_SQ=$(echo 'libexec/git-core' | sed -e 's|[^/][^/]*|..|g') && \
{ test "$bindir/" = "$execdir/" || \
for p in git git-shell git-cvsserver; do \
rm -f "$execdir/$p" && \
test -n "" && \
ln -s "$destdir_from_execdir_SQ/bin/$p" "$execdir/$p" || \
{ test -z "" && \
ln "$bindir/$p" "$execdir/$p" 2>/dev/null || \
cp "$bindir/$p" "$execdir/$p" || exit; } \
done; \
} && \
for p in git-receive-pack git-upload-archive git-upload-pack; do \
rm -f "$bindir/$p" && \
test -n "" && \
ln -s "git" "$bindir/$p" || \
{ test -z "" && \
ln "$bindir/git" "$bindir/$p" 2>/dev/null || \
ln -s "git" "$bindir/$p" 2>/dev/null || \
cp "$bindir/git" "$bindir/$p" || exit; }; \
done && \
for p in git-add git-am git-annotate git-apply git-archive git-bisect--helper git-blame git-branch git-bugreport git-bundle git-cat-file git-check-attr git-check-ignore git-check-mailmap git-check-ref-format git-checkout--worker git-checkout-index git-checkout git-clean git-clone git-column git-commit-graph git-commit-tree git-commit git-config git-count-objects git-credential-cache--daemon git-credential-cache git-credential-store git-credential git-describe git-diff-files git-diff-index git-diff-tree git-diff git-difftool git-env--helper git-fast-export git-fast-import git-fetch-pack git-fetch git-fmt-merge-msg git-for-each-ref git-for-each-repo git-fsck git-gc git-get-tar-commit-id git-grep git-hash-object git-help git-hook git-index-pack git-init-db git-interpret-trailers git-log git-ls-files git-ls-remote git-ls-tree git-mailinfo git-mailsplit git-merge-base git-merge-file git-merge-index git-merge-ours git-merge-recursive git-merge-tree git-merge git-mktag git-mktree git-multi-pack-index git-mv git-name-rev git-notes git-pack-objects git-pack-redundant git-pack-refs git-patch-id git-prune-packed git-prune git-pull git-push git-range-diff git-read-tree git-rebase git-receive-pack git-reflog git-remote-ext git-remote-fd git-remote git-repack git-replace git-rerere git-reset git-rev-list git-rev-parse git-revert git-rm git-send-pack git-shortlog git-show-branch git-show-index git-show-ref git-sparse-checkout git-stash git-stripspace git-submodule--helper git-symbolic-ref git-tag git-unpack-file git-unpack-objects git-update-index git-update-ref git-update-server-info git-upload-archive git-upload-pack git-var git-verify-commit git-verify-pack git-verify-tag git-worktree git-write-tree git-cherry git-cherry-pick git-format-patch git-fsck-objects git-init git-maintenance git-merge-subtree git-restore git-show git-stage git-status git-switch git-whatchanged; do \
rm -f "$execdir/$p" && \
if test -z ""; \
then \
test -n "" && \
ln -s "$destdir_from_execdir_SQ/bin/git" "$execdir/$p" || \
{ test -z "" && \
ln "$execdir/git" "$execdir/$p" 2>/dev/null || \
ln -s "git" "$execdir/$p" 2>/dev/null || \
cp "$execdir/git" "$execdir/$p" || exit; }; \
fi \
done && \
remote_curl_aliases="git-remote-https git-remote-ftp git-remote-ftps" && \
for p in $remote_curl_aliases; do \
rm -f "$execdir/$p" && \
test -n "" && \
ln -s "git-remote-http" "$execdir/$p" || \
{ test -z "" && \
ln "$execdir/git-remote-http" "$execdir/$p" 2>/dev/null || \
ln -s "git-remote-http" "$execdir/$p" 2>/dev/null || \
cp "$execdir/git-remote-http" "$execdir/$p" || exit; } \
done
ek@apok:~/src/git ((e8926670d4...)|BISECTING)$ pushd ~/tmp
~/tmp ~/src/git
ek@apok:~/tmp$ PATH="$HOME/mygit/bin:$PATH" GIT_SSH_COMMAND='{ pid="$(ps -o ppid:1= -p "$$")"; ps -o pid:1=,cmd= -p "$pid"; awk -v RS=\\0 "/^GIT_CONFIG/ { print \" \" \$0 }" "/proc/$pid/environ"; } 1>&2; ssh' GIT_CONFIG_COUNT=1 GIT_CONFIG_KEY_0=foo.bar GIT_CONFIG_VALUE_0=baz git clone --recurse-submodules git@github.com:EliahKagan/has-nested-submodule.git
Cloning into 'has-nested-submodule'...
1065848 git clone --recurse-submodules git@github.com:EliahKagan/has-nested-submodule.git
GIT_CONFIG_COUNT=1
GIT_CONFIG_KEY_0=foo.bar
GIT_CONFIG_VALUE_0=baz
remote: Enumerating objects: 4, done.
remote: Counting objects: 100% (4/4), done.
remote: Compressing objects: 100% (4/4), done.
remote: Total 4 (delta 0), reused 4 (delta 0), pack-reused 0
Receiving objects: 100% (4/4), done.
Submodule 'has-submodule' (git@github.com:EliahKagan/has-submodule.git) registered for path 'has-submodule'
Cloning into '/home/ek/tmp/has-nested-submodule/has-submodule'...
1065891 /home/ek/mygit/libexec/git-core/git clone --no-checkout --progress --separate-git-dir /home/ek/tmp/has-nested-submodule/.git/modules/has-submodule --no-single-branch -- git@github.com:EliahKagan/has-submodule.git /home/ek/tmp/has-nested-submodule/has-submodule
GIT_CONFIG_COUNT=1
GIT_CONFIG_KEY_0=foo.bar
GIT_CONFIG_VALUE_0=baz
remote: Enumerating objects: 4, done.
remote: Counting objects: 100% (4/4), done.
remote: Compressing objects: 100% (4/4), done.
remote: Total 4 (delta 0), reused 4 (delta 0), pack-reused 0
Receiving objects: 100% (4/4), done.
Submodule path 'has-submodule': checked out '8de4a40d782ddfd338f2ada312714d60541c6f80'
Submodule 'trivial' (git@github.com:EliahKagan/trivial.git) registered for path 'has-submodule/trivial'
Cloning into '/home/ek/tmp/has-nested-submodule/has-submodule/trivial'...
1065917 /home/ek/mygit/libexec/git-core/git clone --no-checkout --progress --separate-git-dir /home/ek/tmp/has-nested-submodule/.git/modules/has-submodule/modules/trivial --no-single-branch -- git@github.com:EliahKagan/trivial.git /home/ek/tmp/has-nested-submodule/has-submodule/trivial
GIT_CONFIG_KEY_0=foo.bar
GIT_CONFIG_PARAMETERS=
GIT_CONFIG_VALUE_0=baz
remote: Enumerating objects: 3, done.
remote: Counting objects: 100% (3/3), done.
remote: Compressing objects: 100% (2/2), done.
remote: Total 3 (delta 0), reused 3 (delta 0), pack-reused 0
Receiving objects: 100% (3/3), done.
Submodule path 'has-submodule/trivial': checked out '656a18dc1e48e035a05a72011a62bca5f41fa07e'
ek@apok:~/tmp$ rm -rf has-nested-submodule/
ek@apok:~/tmp$ popd
~/src/git
ek@apok:~/src/git ((e8926670d4...)|BISECTING)$ rm -r ~/mygit
ek@apok:~/src/git ((e8926670d4...)|BISECTING)$ gix clean -xde
removing .depend/ (🗑️)
removing GIT-BUILD-OPTIONS (🗑️)
removing GIT-CFLAGS (🗑️)
removing GIT-LDFLAGS (🗑️)
removing GIT-PERL-DEFINES (🗑️)
removing GIT-PERL-HEADER (🗑️)
removing GIT-PREFIX (🗑️)
removing GIT-PYTHON-VARS (🗑️)
removing GIT-SCRIPT-DEFINES (🗑️)
removing GIT-USER-AGENT (🗑️)
removing GIT-VERSION-FILE (🗑️)
removing abspath.o (🗑️)
removing add-interactive.o (🗑️)
removing add-patch.o (🗑️)
removing advice.o (🗑️)
removing alias.o (🗑️)
removing alloc.o (🗑️)
removing apply.o (🗑️)
removing archive-tar.o (🗑️)
removing archive-zip.o (🗑️)
removing archive.o (🗑️)
removing attr.o (🗑️)
removing base85.o (🗑️)
removing bin-wrappers/ (🗑️)
removing bisect.o (🗑️)
removing blame.o (🗑️)
removing blob.o (🗑️)
removing bloom.o (🗑️)
removing branch.o (🗑️)
removing builtin/.depend/ (🗑️)
removing builtin/add.o (🗑️)
removing builtin/am.o (🗑️)
removing builtin/annotate.o (🗑️)
removing builtin/apply.o (🗑️)
removing builtin/archive.o (🗑️)
removing builtin/bisect--helper.o (🗑️)
removing builtin/blame.o (🗑️)
removing builtin/branch.o (🗑️)
removing builtin/bugreport.o (🗑️)
removing builtin/bundle.o (🗑️)
removing builtin/cat-file.o (🗑️)
removing builtin/check-attr.o (🗑️)
removing builtin/check-ignore.o (🗑️)
removing builtin/check-mailmap.o (🗑️)
removing builtin/check-ref-format.o (🗑️)
removing builtin/checkout--worker.o (🗑️)
removing builtin/checkout-index.o (🗑️)
removing builtin/checkout.o (🗑️)
removing builtin/clean.o (🗑️)
removing builtin/clone.o (🗑️)
removing builtin/column.o (🗑️)
removing builtin/commit-graph.o (🗑️)
removing builtin/commit-tree.o (🗑️)
removing builtin/commit.o (🗑️)
removing builtin/config.o (🗑️)
removing builtin/count-objects.o (🗑️)
removing builtin/credential-cache--daemon.o (🗑️)
removing builtin/credential-cache.o (🗑️)
removing builtin/credential-store.o (🗑️)
removing builtin/credential.o (🗑️)
removing builtin/describe.o (🗑️)
removing builtin/diff-files.o (🗑️)
removing builtin/diff-index.o (🗑️)
removing builtin/diff-tree.o (🗑️)
removing builtin/diff.o (🗑️)
removing builtin/difftool.o (🗑️)
removing builtin/env--helper.o (🗑️)
removing builtin/fast-export.o (🗑️)
removing builtin/fast-import.o (🗑️)
removing builtin/fetch-pack.o (🗑️)
removing builtin/fetch.o (🗑️)
removing builtin/fmt-merge-msg.o (🗑️)
removing builtin/for-each-ref.o (🗑️)
removing builtin/for-each-repo.o (🗑️)
removing builtin/fsck.o (🗑️)
removing builtin/gc.o (🗑️)
removing builtin/get-tar-commit-id.o (🗑️)
removing builtin/grep.o (🗑️)
removing builtin/hash-object.o (🗑️)
removing builtin/help.o (🗑️)
removing builtin/hook.o (🗑️)
removing builtin/index-pack.o (🗑️)
removing builtin/init-db.o (🗑️)
removing builtin/interpret-trailers.o (🗑️)
removing builtin/log.o (🗑️)
removing builtin/ls-files.o (🗑️)
removing builtin/ls-remote.o (🗑️)
removing builtin/ls-tree.o (🗑️)
removing builtin/mailinfo.o (🗑️)
removing builtin/mailsplit.o (🗑️)
removing builtin/merge-base.o (🗑️)
removing builtin/merge-file.o (🗑️)
removing builtin/merge-index.o (🗑️)
removing builtin/merge-ours.o (🗑️)
removing builtin/merge-recursive.o (🗑️)
removing builtin/merge-tree.o (🗑️)
removing builtin/merge.o (🗑️)
removing builtin/mktag.o (🗑️)
removing builtin/mktree.o (🗑️)
removing builtin/multi-pack-index.o (🗑️)
removing builtin/mv.o (🗑️)
removing builtin/name-rev.o (🗑️)
removing builtin/notes.o (🗑️)
removing builtin/pack-objects.o (🗑️)
removing builtin/pack-redundant.o (🗑️)
removing builtin/pack-refs.o (🗑️)
removing builtin/patch-id.o (🗑️)
removing builtin/prune-packed.o (🗑️)
removing builtin/prune.o (🗑️)
removing builtin/pull.o (🗑️)
removing builtin/push.o (🗑️)
removing builtin/range-diff.o (🗑️)
removing builtin/read-tree.o (🗑️)
removing builtin/rebase.o (🗑️)
removing builtin/receive-pack.o (🗑️)
removing builtin/reflog.o (🗑️)
removing builtin/remote-ext.o (🗑️)
removing builtin/remote-fd.o (🗑️)
removing builtin/remote.o (🗑️)
removing builtin/repack.o (🗑️)
removing builtin/replace.o (🗑️)
removing builtin/rerere.o (🗑️)
removing builtin/reset.o (🗑️)
removing builtin/rev-list.o (🗑️)
removing builtin/rev-parse.o (🗑️)
removing builtin/revert.o (🗑️)
removing builtin/rm.o (🗑️)
removing builtin/send-pack.o (🗑️)
removing builtin/shortlog.o (🗑️)
removing builtin/show-branch.o (🗑️)
removing builtin/show-index.o (🗑️)
removing builtin/show-ref.o (🗑️)
removing builtin/sparse-checkout.o (🗑️)
removing builtin/stash.o (🗑️)
removing builtin/stripspace.o (🗑️)
removing builtin/submodule--helper.o (🗑️)
removing builtin/symbolic-ref.o (🗑️)
removing builtin/tag.o (🗑️)
removing builtin/unpack-file.o (🗑️)
removing builtin/unpack-objects.o (🗑️)
removing builtin/update-index.o (🗑️)
removing builtin/update-ref.o (🗑️)
removing builtin/update-server-info.o (🗑️)
removing builtin/upload-archive.o (🗑️)
removing builtin/upload-pack.o (🗑️)
removing builtin/var.o (🗑️)
removing builtin/verify-commit.o (🗑️)
removing builtin/verify-pack.o (🗑️)
removing builtin/verify-tag.o (🗑️)
removing builtin/worktree.o (🗑️)
removing builtin/write-tree.o (🗑️)
removing bulk-checkin.o (🗑️)
removing bundle.o (🗑️)
removing cache-tree.o (🗑️)
removing cbtree.o (🗑️)
removing chdir-notify.o (🗑️)
removing checkout.o (🗑️)
removing chunk-format.o (🗑️)
removing color.o (🗑️)
removing column.o (🗑️)
removing combine-diff.o (🗑️)
removing command-list.h (🗑️)
removing commit-graph.o (🗑️)
removing commit-reach.o (🗑️)
removing commit.o (🗑️)
removing common-main.o (🗑️)
removing compat/.depend/ (🗑️)
removing compat/fopen.o (🗑️)
removing compat/linux/.depend/ (🗑️)
removing compat/linux/procinfo.o (🗑️)
removing compat/obstack.o (🗑️)
removing compat/qsort_s.o (🗑️)
removing compat/simple-ipc/.depend/ (🗑️)
removing compat/simple-ipc/ipc-shared.o (🗑️)
removing compat/simple-ipc/ipc-unix-socket.o (🗑️)
removing compat/strlcpy.o (🗑️)
removing compat/terminal.o (🗑️)
removing compat/zlib-uncompress2.o (🗑️)
removing config-list.h (🗑️)
removing config.o (🗑️)
removing connect.o (🗑️)
removing connected.o (🗑️)
removing contrib/scalar/.depend/ (🗑️)
removing convert.o (🗑️)
removing copy.o (🗑️)
removing credential.o (🗑️)
removing csum-file.o (🗑️)
removing ctype.o (🗑️)
removing daemon.o (🗑️)
removing date.o (🗑️)
removing decorate.o (🗑️)
removing delta-islands.o (🗑️)
removing diff-delta.o (🗑️)
removing diff-lib.o (🗑️)
removing diff-merges.o (🗑️)
removing diff-no-index.o (🗑️)
removing diff.o (🗑️)
removing diffcore-break.o (🗑️)
removing diffcore-delta.o (🗑️)
removing diffcore-order.o (🗑️)
removing diffcore-pickaxe.o (🗑️)
removing diffcore-rename.o (🗑️)
removing diffcore-rotate.o (🗑️)
removing dir-iterator.o (🗑️)
removing dir.o (🗑️)
removing editor.o (🗑️)
removing entry.o (🗑️)
removing environment.o (🗑️)
removing ewah/.depend/ (🗑️)
removing ewah/bitmap.o (🗑️)
removing ewah/ewah_bitmap.o (🗑️)
removing ewah/ewah_io.o (🗑️)
removing ewah/ewah_rlw.o (🗑️)
removing exec-cmd.o (🗑️)
removing fetch-negotiator.o (🗑️)
removing fetch-pack.o (🗑️)
removing fmt-merge-msg.o (🗑️)
removing fsck.o (🗑️)
removing fsmonitor.o (🗑️)
removing fuzz-commit-graph.o (🗑️)
removing fuzz-pack-headers.o (🗑️)
removing fuzz-pack-idx.o (🗑️)
removing gettext.o (🗑️)
removing git (🗑️)
removing git-add (🗑️)
removing git-add--interactive (🗑️)
removing git-am (🗑️)
removing git-annotate (🗑️)
removing git-apply (🗑️)
removing git-archimport (🗑️)
removing git-archive (🗑️)
removing git-bisect (🗑️)
removing git-bisect--helper (🗑️)
removing git-blame (🗑️)
removing git-branch (🗑️)
removing git-bugreport (🗑️)
removing git-bundle (🗑️)
removing git-cat-file (🗑️)
removing git-check-attr (🗑️)
removing git-check-ignore (🗑️)
removing git-check-mailmap (🗑️)
removing git-check-ref-format (🗑️)
removing git-checkout (🗑️)
removing git-checkout--worker (🗑️)
removing git-checkout-index (🗑️)
removing git-cherry (🗑️)
removing git-cherry-pick (🗑️)
removing git-clean (🗑️)
removing git-clone (🗑️)
removing git-column (🗑️)
removing git-commit (🗑️)
removing git-commit-graph (🗑️)
removing git-commit-tree (🗑️)
removing git-config (🗑️)
removing git-count-objects (🗑️)
removing git-credential (🗑️)
removing git-credential-cache (🗑️)
removing git-credential-cache--daemon (🗑️)
removing git-credential-store (🗑️)
removing git-cvsexportcommit (🗑️)
removing git-cvsimport (🗑️)
removing git-cvsserver (🗑️)
removing git-daemon (🗑️)
removing git-describe (🗑️)
removing git-diff (🗑️)
removing git-diff-files (🗑️)
removing git-diff-index (🗑️)
removing git-diff-tree (🗑️)
removing git-difftool (🗑️)
removing git-difftool--helper (🗑️)
removing git-env--helper (🗑️)
removing git-fast-export (🗑️)
removing git-fast-import (🗑️)
removing git-fetch (🗑️)
removing git-fetch-pack (🗑️)
removing git-filter-branch (🗑️)
removing git-fmt-merge-msg (🗑️)
removing git-for-each-ref (🗑️)
removing git-for-each-repo (🗑️)
removing git-format-patch (🗑️)
removing git-fsck (🗑️)
removing git-fsck-objects (🗑️)
removing git-gc (🗑️)
removing git-get-tar-commit-id (🗑️)
removing git-grep (🗑️)
removing git-gui/GIT-GUI-VARS (🗑️)
removing git-gui/GIT-VERSION-FILE (🗑️)
removing git-gui/git-gui (🗑️)
removing git-gui/lib/tclIndex (🗑️)
removing git-gui/po/bg.msg (🗑️)
removing git-gui/po/de.msg (🗑️)
removing git-gui/po/el.msg (🗑️)
removing git-gui/po/fr.msg (🗑️)
removing git-gui/po/hu.msg (🗑️)
removing git-gui/po/it.msg (🗑️)
removing git-gui/po/ja.msg (🗑️)
removing git-gui/po/nb.msg (🗑️)
removing git-gui/po/pt_br.msg (🗑️)
removing git-gui/po/pt_pt.msg (🗑️)
removing git-gui/po/ru.msg (🗑️)
removing git-gui/po/sv.msg (🗑️)
removing git-gui/po/vi.msg (🗑️)
removing git-gui/po/zh_cn.msg (🗑️)
removing git-hash-object (🗑️)
removing git-help (🗑️)
removing git-hook (🗑️)
removing git-http-backend (🗑️)
removing git-http-fetch (🗑️)
removing git-http-push (🗑️)
removing git-imap-send (🗑️)
removing git-index-pack (🗑️)
removing git-init (🗑️)
removing git-init-db (🗑️)
removing git-instaweb (🗑️)
removing git-interpret-trailers (🗑️)
removing git-log (🗑️)
removing git-ls-files (🗑️)
removing git-ls-remote (🗑️)
removing git-ls-tree (🗑️)
removing git-mailinfo (🗑️)
removing git-mailsplit (🗑️)
removing git-maintenance (🗑️)
removing git-merge (🗑️)
removing git-merge-base (🗑️)
removing git-merge-file (🗑️)
removing git-merge-index (🗑️)
removing git-merge-octopus (🗑️)
removing git-merge-one-file (🗑️)
removing git-merge-ours (🗑️)
removing git-merge-recursive (🗑️)
removing git-merge-resolve (🗑️)
removing git-merge-subtree (🗑️)
removing git-merge-tree (🗑️)
removing git-mergetool (🗑️)
removing git-mergetool--lib (🗑️)
removing git-mktag (🗑️)
removing git-mktree (🗑️)
removing git-multi-pack-index (🗑️)
removing git-mv (🗑️)
removing git-name-rev (🗑️)
removing git-notes (🗑️)
removing git-p4 (🗑️)
removing git-pack-objects (🗑️)
removing git-pack-redundant (🗑️)
removing git-pack-refs (🗑️)
removing git-patch-id (🗑️)
removing git-prune (🗑️)
removing git-prune-packed (🗑️)
removing git-pull (🗑️)
removing git-push (🗑️)
removing git-quiltimport (🗑️)
removing git-range-diff (🗑️)
removing git-read-tree (🗑️)
removing git-rebase (🗑️)
removing git-receive-pack (🗑️)
removing git-reflog (🗑️)
removing git-remote (🗑️)
removing git-remote-ext (🗑️)
removing git-remote-fd (🗑️)
removing git-remote-ftp (🗑️)
removing git-remote-ftps (🗑️)
removing git-remote-http (🗑️)
removing git-remote-https (🗑️)
removing git-repack (🗑️)
removing git-replace (🗑️)
removing git-request-pull (🗑️)
removing git-rerere (🗑️)
removing git-reset (🗑️)
removing git-restore (🗑️)
removing git-rev-list (🗑️)
removing git-rev-parse (🗑️)
removing git-revert (🗑️)
removing git-rm (🗑️)
removing git-send-email (🗑️)
removing git-send-pack (🗑️)
removing git-sh-i18n (🗑️)
removing git-sh-i18n--envsubst (🗑️)
removing git-sh-setup (🗑️)
removing git-shell (🗑️)
removing git-shortlog (🗑️)
removing git-show (🗑️)
removing git-show-branch (🗑️)
removing git-show-index (🗑️)
removing git-show-ref (🗑️)
removing git-sparse-checkout (🗑️)
removing git-stage (🗑️)
removing git-stash (🗑️)
removing git-status (🗑️)
removing git-stripspace (🗑️)
removing git-submodule (🗑️)
removing git-submodule--helper (🗑️)
removing git-svn (🗑️)
removing git-switch (🗑️)
removing git-symbolic-ref (🗑️)
removing git-tag (🗑️)
removing git-unpack-file (🗑️)
removing git-unpack-objects (🗑️)
removing git-update-index (🗑️)
removing git-update-ref (🗑️)
removing git-update-server-info (🗑️)
removing git-upload-archive (🗑️)
removing git-upload-pack (🗑️)
removing git-var (🗑️)
removing git-verify-commit (🗑️)
removing git-verify-pack (🗑️)
removing git-verify-tag (🗑️)
removing git-web--browse (🗑️)
removing git-whatchanged (🗑️)
removing git-worktree (🗑️)
removing git-write-tree (🗑️)
removing git.o (🗑️)
removing gitk-git/GIT-TCLTK-VARS (🗑️)
removing gitk-git/gitk-wish (🗑️)
removing gitk-git/po/bg.msg (🗑️)
removing gitk-git/po/ca.msg (🗑️)
removing gitk-git/po/de.msg (🗑️)
removing gitk-git/po/es.msg (🗑️)
removing gitk-git/po/fr.msg (🗑️)
removing gitk-git/po/hu.msg (🗑️)
removing gitk-git/po/it.msg (🗑️)
removing gitk-git/po/ja.msg (🗑️)
removing gitk-git/po/pt_br.msg (🗑️)
removing gitk-git/po/pt_pt.msg (🗑️)
removing gitk-git/po/ru.msg (🗑️)
removing gitk-git/po/sv.msg (🗑️)
removing gitk-git/po/vi.msg (🗑️)
removing gitk-git/po/zh_cn.msg (🗑️)
removing gitweb/GITWEB-BUILD-OPTIONS (🗑️)
removing gitweb/gitweb.cgi (🗑️)
removing gitweb/static/gitweb.js (🗑️)
removing gpg-interface.o (🗑️)
removing graph.o (🗑️)
removing grep.o (🗑️)
removing hash-lookup.o (🗑️)
removing hashmap.o (🗑️)
removing help.o (🗑️)
removing hex.o (🗑️)
removing hook-list.h (🗑️)
removing hook.o (🗑️)
removing http-backend.o (🗑️)
removing http-fetch.o (🗑️)
removing http-push.o (🗑️)
removing http-walker.o (🗑️)
removing http.o (🗑️)
removing ident.o (🗑️)
removing imap-send.o (🗑️)
removing json-writer.o (🗑️)
removing kwset.o (🗑️)
removing levenshtein.o (🗑️)
removing libgit.a (🗑️)
removing line-log.o (🗑️)
removing line-range.o (🗑️)
removing linear-assignment.o (🗑️)
removing list-objects-filter-options.o (🗑️)
removing list-objects-filter.o (🗑️)
removing list-objects.o (🗑️)
removing ll-merge.o (🗑️)
removing lockfile.o (🗑️)
removing log-tree.o (🗑️)
removing ls-refs.o (🗑️)
removing mailinfo.o (🗑️)
removing mailmap.o (🗑️)
removing match-trees.o (🗑️)
removing mem-pool.o (🗑️)
removing merge-blobs.o (🗑️)
removing merge-ort-wrappers.o (🗑️)
removing merge-ort.o (🗑️)
removing merge-recursive.o (🗑️)
removing merge.o (🗑️)
removing mergesort.o (🗑️)
removing midx.o (🗑️)
removing name-hash.o (🗑️)
removing negotiator/.depend/ (🗑️)
removing negotiator/default.o (🗑️)
removing negotiator/noop.o (🗑️)
removing negotiator/skipping.o (🗑️)
removing notes-cache.o (🗑️)
removing notes-merge.o (🗑️)
removing notes-utils.o (🗑️)
removing notes.o (🗑️)
removing object-file.o (🗑️)
removing object-name.o (🗑️)
removing object.o (🗑️)
removing oid-array.o (🗑️)
removing oidmap.o (🗑️)
removing oidset.o (🗑️)
removing oidtree.o (🗑️)
removing pack-bitmap-write.o (🗑️)
removing pack-bitmap.o (🗑️)
removing pack-check.o (🗑️)
removing pack-objects.o (🗑️)
removing pack-revindex.o (🗑️)
removing pack-write.o (🗑️)
removing packfile.o (🗑️)
removing pager.o (🗑️)
removing parallel-checkout.o (🗑️)
removing parse-options-cb.o (🗑️)
removing parse-options.o (🗑️)
removing patch-delta.o (🗑️)
removing patch-ids.o (🗑️)
removing path.o (🗑️)
removing pathspec.o (🗑️)
removing perl/build/ (🗑️)
removing pkt-line.o (🗑️)
removing po/build/ (🗑️)
removing preload-index.o (🗑️)
removing pretty.o (🗑️)
removing prio-queue.o (🗑️)
removing progress.o (🗑️)
removing promisor-remote.o (🗑️)
removing prompt.o (🗑️)
removing protocol-caps.o (🗑️)
removing protocol.o (🗑️)
removing prune-packed.o (🗑️)
removing quote.o (🗑️)
removing range-diff.o (🗑️)
removing reachable.o (🗑️)
removing read-cache.o (🗑️)
removing rebase-interactive.o (🗑️)
removing rebase.o (🗑️)
removing ref-filter.o (🗑️)
removing reflog-walk.o (🗑️)
removing reflog.o (🗑️)
removing refs.o (🗑️)
removing refs/.depend/ (🗑️)
removing refs/debug.o (🗑️)
removing refs/files-backend.o (🗑️)
removing refs/iterator.o (🗑️)
removing refs/packed-backend.o (🗑️)
removing refs/ref-cache.o (🗑️)
removing refspec.o (🗑️)
removing reftable/.depend/ (🗑️)
removing reftable/basics.o (🗑️)
removing reftable/basics_test.o (🗑️)
removing reftable/block.o (🗑️)
removing reftable/block_test.o (🗑️)
removing reftable/blocksource.o (🗑️)
removing reftable/dump.o (🗑️)
removing reftable/error.o (🗑️)
removing reftable/generic.o (🗑️)
removing reftable/iter.o (🗑️)
removing reftable/libreftable.a (🗑️)
removing reftable/libreftable_test.a (🗑️)
removing reftable/merged.o (🗑️)
removing reftable/merged_test.o (🗑️)
removing reftable/pq.o (🗑️)
removing reftable/pq_test.o (🗑️)
removing reftable/publicbasics.o (🗑️)
removing reftable/reader.o (🗑️)
removing reftable/readwrite_test.o (🗑️)
removing reftable/record.o (🗑️)
removing reftable/record_test.o (🗑️)
removing reftable/refname.o (🗑️)
removing reftable/refname_test.o (🗑️)
removing reftable/stack.o (🗑️)
removing reftable/stack_test.o (🗑️)
removing reftable/test_framework.o (🗑️)
removing reftable/tree.o (🗑️)
removing reftable/tree_test.o (🗑️)
removing reftable/writer.o (🗑️)
removing remote-curl.o (🗑️)
removing remote.o (🗑️)
removing replace-object.o (🗑️)
removing repo-settings.o (🗑️)
removing repository.o (🗑️)
removing rerere.o (🗑️)
removing reset.o (🗑️)
removing resolve-undo.o (🗑️)
removing revision.o (🗑️)
removing run-command.o (🗑️)
removing send-pack.o (🗑️)
removing sequencer.o (🗑️)
removing serve.o (🗑️)
removing server-info.o (🗑️)
removing setup.o (🗑️)
removing sh-i18n--envsubst.o (🗑️)
removing sha1dc/.depend/ (🗑️)
removing sha1dc/sha1.o (🗑️)
removing sha1dc/ubc_check.o (🗑️)
removing sha1dc_git.o (🗑️)
removing sha256/block/.depend/ (🗑️)
removing sha256/block/sha256.o (🗑️)
removing shallow.o (🗑️)
removing shell.o (🗑️)
removing sideband.o (🗑️)
removing sigchain.o (🗑️)
removing sparse-index.o (🗑️)
removing split-index.o (🗑️)
removing stable-qsort.o (🗑️)
removing strbuf.o (🗑️)
removing streaming.o (🗑️)
removing string-list.o (🗑️)
removing strmap.o (🗑️)
removing strvec.o (🗑️)
removing sub-process.o (🗑️)
removing submodule-config.o (🗑️)
removing submodule.o (🗑️)
removing symlinks.o (🗑️)
removing t/helper/.depend/ (🗑️)
removing t/helper/test-advise.o (🗑️)
removing t/helper/test-bitmap.o (🗑️)
removing t/helper/test-bloom.o (🗑️)
removing t/helper/test-chmtime.o (🗑️)
removing t/helper/test-config.o (🗑️)
removing t/helper/test-crontab.o (🗑️)
removing t/helper/test-csprng.o (🗑️)
removing t/helper/test-ctype.o (🗑️)
removing t/helper/test-date.o (🗑️)
removing t/helper/test-delta.o (🗑️)
removing t/helper/test-dir-iterator.o (🗑️)
removing t/helper/test-drop-caches.o (🗑️)
removing t/helper/test-dump-cache-tree.o (🗑️)
removing t/helper/test-dump-fsmonitor.o (🗑️)
removing t/helper/test-dump-split-index.o (🗑️)
removing t/helper/test-dump-untracked-cache.o (🗑️)
removing t/helper/test-example-decorate.o (🗑️)
removing t/helper/test-fake-ssh (🗑️)
removing t/helper/test-fake-ssh.o (🗑️)
removing t/helper/test-fast-rebase.o (🗑️)
removing t/helper/test-genrandom.o (🗑️)
removing t/helper/test-genzeros.o (🗑️)
removing t/helper/test-getcwd.o (🗑️)
removing t/helper/test-hash-speed.o (🗑️)
removing t/helper/test-hash.o (🗑️)
removing t/helper/test-hashmap.o (🗑️)
removing t/helper/test-index-version.o (🗑️)
removing t/helper/test-json-writer.o (🗑️)
removing t/helper/test-lazy-init-name-hash.o (🗑️)
removing t/helper/test-match-trees.o (🗑️)
removing t/helper/test-mergesort.o (🗑️)
removing t/helper/test-mktemp.o (🗑️)
removing t/helper/test-oid-array.o (🗑️)
removing t/helper/test-oidmap.o (🗑️)
removing t/helper/test-oidtree.o (🗑️)
removing t/helper/test-online-cpus.o (🗑️)
removing t/helper/test-parse-options.o (🗑️)
removing t/helper/test-parse-pathspec-file.o (🗑️)
removing t/helper/test-partial-clone.o (🗑️)
removing t/helper/test-path-utils.o (🗑️)
removing t/helper/test-pcre2-config.o (🗑️)
removing t/helper/test-pkt-line.o (🗑️)
removing t/helper/test-prio-queue.o (🗑️)
removing t/helper/test-proc-receive.o (🗑️)
removing t/helper/test-progress.o (🗑️)
removing t/helper/test-reach.o (🗑️)
removing t/helper/test-read-cache.o (🗑️)
removing t/helper/test-read-graph.o (🗑️)
removing t/helper/test-read-midx.o (🗑️)
removing t/helper/test-ref-store.o (🗑️)
removing t/helper/test-reftable.o (🗑️)
removing t/helper/test-regex.o (🗑️)
removing t/helper/test-repository.o (🗑️)
removing t/helper/test-revision-walking.o (🗑️)
removing t/helper/test-run-command.o (🗑️)
removing t/helper/test-scrap-cache-tree.o (🗑️)
removing t/helper/test-serve-v2.o (🗑️)
removing t/helper/test-sha1.o (🗑️)
removing t/helper/test-sha256.o (🗑️)
removing t/helper/test-sigchain.o (🗑️)
removing t/helper/test-simple-ipc.o (🗑️)
removing t/helper/test-strcmp-offset.o (🗑️)
removing t/helper/test-string-list.o (🗑️)
removing t/helper/test-submodule-config.o (🗑️)
removing t/helper/test-submodule-nested-repo-config.o (🗑️)
removing t/helper/test-subprocess.o (🗑️)
removing t/helper/test-tool (🗑️)
removing t/helper/test-tool.o (🗑️)
removing t/helper/test-trace2.o (🗑️)
removing t/helper/test-urlmatch-normalization.o (🗑️)
removing t/helper/test-userdiff.o (🗑️)
removing t/helper/test-wildmatch.o (🗑️)
removing t/helper/test-windows-named-pipe.o (🗑️)
removing t/helper/test-write-cache.o (🗑️)
removing t/helper/test-xml-encode.o (🗑️)
removing tag.o (🗑️)
removing tempfile.o (🗑️)
removing templates/blt/ (🗑️)
removing templates/boilerplates.made (🗑️)
removing thread-utils.o (🗑️)
removing tmp-objdir.o (🗑️)
removing trace.o (🗑️)
removing trace2.o (🗑️)
removing trace2/.depend/ (🗑️)
removing trace2/tr2_cfg.o (🗑️)
removing trace2/tr2_cmd_name.o (🗑️)
removing trace2/tr2_dst.o (🗑️)
removing trace2/tr2_sid.o (🗑️)
removing trace2/tr2_sysenv.o (🗑️)
removing trace2/tr2_tbuf.o (🗑️)
removing trace2/tr2_tgt_event.o (🗑️)
removing trace2/tr2_tgt_normal.o (🗑️)
removing trace2/tr2_tgt_perf.o (🗑️)
removing trace2/tr2_tls.o (🗑️)
removing trailer.o (🗑️)
removing transport-helper.o (🗑️)
removing transport.o (🗑️)
removing tree-diff.o (🗑️)
removing tree-walk.o (🗑️)
removing tree.o (🗑️)
removing unix-socket.o (🗑️)
removing unix-stream-server.o (🗑️)
removing unpack-trees.o (🗑️)
removing upload-pack.o (🗑️)
removing url.o (🗑️)
removing urlmatch.o (🗑️)
removing usage.o (🗑️)
removing userdiff.o (🗑️)
removing utf8.o (🗑️)
removing varint.o (🗑️)
removing version.o (🗑️)
removing versioncmp.o (🗑️)
removing walker.o (🗑️)
removing wildmatch.o (🗑️)
removing worktree.o (🗑️)
removing wrapper.o (🗑️)
removing write-or-die.o (🗑️)
removing ws.o (🗑️)
removing wt-status.o (🗑️)
removing xdiff-interface.o (🗑️)
removing xdiff/.depend/ (🗑️)
removing xdiff/lib.a (🗑️)
removing xdiff/xdiffi.o (🗑️)
removing xdiff/xemit.o (🗑️)
removing xdiff/xhistogram.o (🗑️)
removing xdiff/xmerge.o (🗑️)
removing xdiff/xpatience.o (🗑️)
removing xdiff/xprepare.o (🗑️)
removing xdiff/xutils.o (🗑️)
removing zlib.o (🗑️)
ek@apok:~/src/git ((e8926670d4...)|BISECTING)$ git bisect old
Bisecting: 19 revisions left to test after this (roughly 4 steps)
[98f6a3a35335d5d4b48df0088f2da0075e07f99c] Merge branch 'ns/fsync-or-die-message-fix'
ek@apok:~/src/git ((98f6a3a353...)|BISECTING)$ make prefix="$HOME/mygit" -j5
GIT_VERSION = 2.35.1.789.g98f6a3a353
* new build flags
CC fuzz-commit-graph.o
CC fuzz-pack-headers.o
CC fuzz-pack-idx.o
CC daemon.o
CC common-main.o
CC abspath.o
* new link flags
CC add-interactive.o
CC add-patch.o
CC advice.o
CC alias.o
CC alloc.o
CC apply.o
CC archive-tar.o
CC archive-zip.o
CC archive.o
* new prefix flags
CC base85.o
CC bisect.o
CC blame.o
CC blob.o
CC bloom.o
CC branch.o
CC bulk-checkin.o
CC bundle.o
CC cache-tree.o
CC cbtree.o
CC chdir-notify.o
CC checkout.o
CC chunk-format.o
CC color.o
CC column.o
CC combine-diff.o
CC commit-graph.o
CC commit-reach.o
CC commit.o
CC compat/obstack.o
CC compat/terminal.o
CC compat/zlib-uncompress2.o
CC config.o
CC connect.o
CC connected.o
CC convert.o
CC copy.o
CC credential.o
CC csum-file.o
CC ctype.o
CC date.o
CC decorate.o
CC delta-islands.o
CC diff-delta.o
CC diff-merges.o
CC diff-lib.o
CC diff-no-index.o
CC diff.o
CC diffcore-break.o
CC diffcore-delta.o
CC diffcore-order.o
CC diffcore-pickaxe.o
CC diffcore-rename.o
CC diffcore-rotate.o
CC dir-iterator.o
CC dir.o
CC editor.o
CC entry.o
CC environment.o
CC ewah/bitmap.o
CC ewah/ewah_bitmap.o
CC ewah/ewah_io.o
CC ewah/ewah_rlw.o
CC exec-cmd.o
CC fetch-negotiator.o
CC fetch-pack.o
CC fmt-merge-msg.o
CC fsck.o
CC fsmonitor.o
CC gettext.o
CC gpg-interface.o
CC graph.o
CC grep.o
CC hash-lookup.o
CC hashmap.o
GEN command-list.h
CC hex.o
CC hook.o
CC ident.o
CC json-writer.o
CC kwset.o
CC levenshtein.o
CC line-log.o
CC line-range.o
CC linear-assignment.o
CC list-objects-filter-options.o
CC list-objects-filter.o
CC list-objects.o
CC ll-merge.o
CC lockfile.o
CC log-tree.o
CC ls-refs.o
CC mailinfo.o
CC mailmap.o
CC match-trees.o
CC mem-pool.o
CC merge-blobs.o
CC merge-ort.o
CC merge-ort-wrappers.o
CC merge-recursive.o
CC merge.o
CC mergesort.o
CC midx.o
CC name-hash.o
CC negotiator/default.o
CC negotiator/noop.o
CC negotiator/skipping.o
CC notes-cache.o
CC notes-merge.o
CC notes-utils.o
CC notes.o
CC object-file.o
CC object-name.o
CC object.o
CC oid-array.o
CC oidmap.o
CC oidset.o
CC oidtree.o
CC pack-bitmap-write.o
CC pack-bitmap.o
CC pack-check.o
CC pack-objects.o
CC pack-revindex.o
CC pack-write.o
CC packfile.o
CC pager.o
CC parallel-checkout.o
CC parse-options-cb.o
CC parse-options.o
CC patch-delta.o
CC patch-ids.o
CC path.o
CC pathspec.o
CC pkt-line.o
CC preload-index.o
CC pretty.o
CC prio-queue.o
CC progress.o
CC promisor-remote.o
CC prompt.o
CC protocol.o
CC protocol-caps.o
CC prune-packed.o
CC quote.o
CC range-diff.o
CC reachable.o
CC read-cache.o
CC rebase-interactive.o
CC rebase.o
CC ref-filter.o
CC reflog-walk.o
CC reflog.o
CC refs.o
CC refs/debug.o
CC refs/files-backend.o
CC refs/iterator.o
CC refs/packed-backend.o
CC refs/ref-cache.o
CC refspec.o
CC remote.o
CC replace-object.o
CC repo-settings.o
CC repository.o
CC rerere.o
CC reset.o
CC resolve-undo.o
CC revision.o
CC run-command.o
CC send-pack.o
CC sequencer.o
CC serve.o
CC server-info.o
CC setup.o
CC shallow.o
CC sideband.o
CC sigchain.o
CC sparse-index.o
CC split-index.o
CC stable-qsort.o
CC strbuf.o
CC streaming.o
CC string-list.o
CC strmap.o
CC strvec.o
CC sub-process.o
CC submodule-config.o
CC submodule.o
CC symlinks.o
CC tag.o
CC tempfile.o
CC thread-utils.o
CC tmp-objdir.o
CC trace.o
CC trace2.o
CC trace2/tr2_cfg.o
CC trace2/tr2_cmd_name.o
CC trace2/tr2_dst.o
CC trace2/tr2_sid.o
CC trace2/tr2_sysenv.o
CC trace2/tr2_tbuf.o
CC trace2/tr2_tgt_event.o
CC trace2/tr2_tgt_normal.o
CC trace2/tr2_tgt_perf.o
CC trace2/tr2_tls.o
CC trailer.o
CC transport-helper.o
CC transport.o
CC tree-diff.o
CC tree-walk.o
CC tree.o
CC unpack-trees.o
CC upload-pack.o
CC url.o
CC urlmatch.o
CC usage.o
CC userdiff.o
CC utf8.o
CC varint.o
CC versioncmp.o
CC walker.o
CC wildmatch.o
CC worktree.o
CC wrapper.o
CC write-or-die.o
CC ws.o
CC wt-status.o
CC xdiff-interface.o
CC zlib.o
CC unix-socket.o
CC unix-stream-server.o
CC compat/simple-ipc/ipc-shared.o
CC compat/simple-ipc/ipc-unix-socket.o
CC sha1dc_git.o
CC sha1dc/sha1.o
CC sha1dc/ubc_check.o
CC sha256/block/sha256.o
CC compat/linux/procinfo.o
CC compat/fopen.o
CC compat/strlcpy.o
CC compat/qsort_s.o
CC xdiff/xdiffi.o
CC xdiff/xemit.o
CC xdiff/xhistogram.o
CC xdiff/xmerge.o
CC xdiff/xpatience.o
CC xdiff/xprepare.o
CC xdiff/xutils.o
CC reftable/basics.o
CC reftable/error.o
CC reftable/block.o
CC reftable/blocksource.o
CC reftable/iter.o
CC reftable/publicbasics.o
CC reftable/merged.o
CC reftable/pq.o
CC reftable/reader.o
CC reftable/record.o
CC reftable/refname.o
CC reftable/generic.o
CC reftable/stack.o
CC reftable/tree.o
CC reftable/writer.o
CC http-backend.o
CC imap-send.o
CC http.o
CC sh-i18n--envsubst.o
CC shell.o
CC http-walker.o
CC http-fetch.o
CC http-push.o
CC remote-curl.o
* new script parameters
* new perl-specific parameters
* new Python interpreter location
GEN git-instaweb
CC git.o
CC builtin/add.o
CC builtin/am.o
CC builtin/annotate.o
CC builtin/apply.o
CC builtin/archive.o
CC builtin/bisect--helper.o
CC builtin/blame.o
CC builtin/branch.o
GEN hook-list.h
CC builtin/bundle.o
CC builtin/cat-file.o
CC builtin/check-attr.o
CC builtin/check-ignore.o
CC builtin/check-mailmap.o
CC builtin/check-ref-format.o
CC builtin/checkout--worker.o
CC builtin/checkout-index.o
CC builtin/checkout.o
CC builtin/clean.o
CC builtin/clone.o
CC builtin/column.o
CC builtin/commit-graph.o
CC builtin/commit-tree.o
CC builtin/commit.o
CC builtin/config.o
CC builtin/count-objects.o
CC builtin/credential-cache--daemon.o
CC builtin/credential-cache.o
CC builtin/credential-store.o
CC builtin/credential.o
CC builtin/describe.o
CC builtin/diff-files.o
CC builtin/diff-index.o
CC builtin/diff-tree.o
CC builtin/diff.o
CC builtin/difftool.o
CC builtin/env--helper.o
CC builtin/fast-export.o
CC builtin/fast-import.o
CC builtin/fetch-pack.o
CC builtin/fetch.o
CC builtin/fmt-merge-msg.o
CC builtin/for-each-ref.o
CC builtin/for-each-repo.o
CC builtin/fsck.o
CC builtin/gc.o
CC builtin/get-tar-commit-id.o
CC builtin/grep.o
CC builtin/hash-object.o
GEN config-list.h
CC builtin/hook.o
CC builtin/index-pack.o
CC builtin/init-db.o
CC builtin/interpret-trailers.o
CC builtin/log.o
CC builtin/ls-files.o
CC builtin/ls-remote.o
CC builtin/ls-tree.o
CC builtin/mailinfo.o
CC builtin/mailsplit.o
CC builtin/merge-base.o
CC builtin/merge-file.o
CC builtin/merge-index.o
CC builtin/merge-ours.o
CC builtin/merge-recursive.o
CC builtin/merge-tree.o
CC builtin/merge.o
CC builtin/mktag.o
CC builtin/mktree.o
CC builtin/multi-pack-index.o
CC builtin/mv.o
CC builtin/name-rev.o
CC builtin/notes.o
CC builtin/pack-objects.o
CC builtin/pack-redundant.o
CC builtin/pack-refs.o
CC builtin/patch-id.o
CC builtin/prune-packed.o
CC builtin/prune.o
CC builtin/pull.o
CC builtin/push.o
CC builtin/range-diff.o
CC builtin/read-tree.o
CC builtin/rebase.o
CC builtin/receive-pack.o
CC builtin/reflog.o
CC builtin/remote-ext.o
CC builtin/remote-fd.o
CC builtin/remote.o
CC builtin/repack.o
CC builtin/replace.o
CC builtin/rerere.o
CC builtin/reset.o
CC builtin/rev-list.o
CC builtin/rev-parse.o
CC builtin/revert.o
CC builtin/rm.o
CC builtin/send-pack.o
CC builtin/shortlog.o
CC builtin/show-branch.o
CC builtin/show-index.o
CC builtin/show-ref.o
CC builtin/sparse-checkout.o
CC builtin/stash.o
CC builtin/stripspace.o
CC builtin/submodule--helper.o
CC builtin/symbolic-ref.o
CC builtin/tag.o
CC builtin/unpack-file.o
CC builtin/unpack-objects.o
CC builtin/update-index.o
CC builtin/update-ref.o
CC builtin/update-server-info.o
CC builtin/upload-archive.o
CC builtin/upload-pack.o
CC builtin/var.o
CC builtin/verify-commit.o
CC builtin/verify-pack.o
CC builtin/verify-tag.o
CC builtin/worktree.o
CC builtin/write-tree.o
GEN git-mergetool--lib
GEN git-sh-i18n
GEN git-sh-setup
CC attr.o
CC help.o
CC version.o
AR xdiff/lib.a
AR reftable/libreftable.a
GEN git-bisect
GEN git-difftool--helper
GEN git-filter-branch
GEN git-merge-octopus
GEN git-merge-one-file
GEN git-merge-resolve
GEN git-mergetool
GEN git-quiltimport
GEN git-request-pull
GEN git-submodule
GEN git-web--browse
GEN GIT-PERL-HEADER
GEN git-p4
CC builtin/bugreport.o
CC builtin/help.o
GEN git-add--interactive
GEN git-archimport
GEN git-cvsexportcommit
GEN git-cvsimport
GEN git-cvsserver
GEN git-send-email
GEN git-svn
AR libgit.a
LINK git-daemon
LINK git-http-backend
LINK git-imap-send
LINK git-sh-i18n--envsubst
LINK git-shell
LINK git-http-fetch
LINK git-http-push
LINK git-remote-http
LINK git
LN/CP git-remote-https
LN/CP git-remote-ftps
LN/CP git-remote-ftp
BUILTIN git-am
BUILTIN git-add
BUILTIN git-annotate
BUILTIN git-apply
BUILTIN git-archive
BUILTIN git-bisect--helper
BUILTIN git-blame
BUILTIN git-branch
BUILTIN git-bundle
BUILTIN git-bugreport
BUILTIN git-cat-file
BUILTIN git-check-attr
BUILTIN git-check-ignore
BUILTIN git-check-mailmap
BUILTIN git-checkout--worker
BUILTIN git-check-ref-format
BUILTIN git-checkout-index
BUILTIN git-checkout
BUILTIN git-clean
BUILTIN git-clone
BUILTIN git-column
BUILTIN git-commit-graph
BUILTIN git-commit-tree
BUILTIN git-commit
BUILTIN git-config
BUILTIN git-count-objects
BUILTIN git-credential-cache--daemon
BUILTIN git-credential-cache
BUILTIN git-credential-store
BUILTIN git-credential
BUILTIN git-diff-files
BUILTIN git-describe
BUILTIN git-diff-index
BUILTIN git-diff-tree
BUILTIN git-diff
BUILTIN git-difftool
BUILTIN git-env--helper
BUILTIN git-fast-export
BUILTIN git-fast-import
BUILTIN git-fetch-pack
BUILTIN git-fetch
BUILTIN git-fmt-merge-msg
BUILTIN git-for-each-ref
BUILTIN git-for-each-repo
BUILTIN git-fsck
BUILTIN git-gc
BUILTIN git-get-tar-commit-id
BUILTIN git-grep
BUILTIN git-hash-object
BUILTIN git-help
BUILTIN git-hook
BUILTIN git-index-pack
BUILTIN git-init-db
BUILTIN git-interpret-trailers
BUILTIN git-log
BUILTIN git-ls-files
BUILTIN git-ls-remote
BUILTIN git-ls-tree
BUILTIN git-mailinfo
BUILTIN git-mailsplit
BUILTIN git-merge-base
BUILTIN git-merge-index
BUILTIN git-merge-file
BUILTIN git-merge-ours
BUILTIN git-merge-recursive
BUILTIN git-merge-tree
BUILTIN git-merge
BUILTIN git-mktag
BUILTIN git-mktree
BUILTIN git-multi-pack-index
BUILTIN git-mv
BUILTIN git-name-rev
BUILTIN git-notes
BUILTIN git-pack-objects
BUILTIN git-pack-refs
BUILTIN git-pack-redundant
BUILTIN git-patch-id
BUILTIN git-prune-packed
BUILTIN git-prune
BUILTIN git-pull
BUILTIN git-push
BUILTIN git-range-diff
BUILTIN git-read-tree
BUILTIN git-rebase
BUILTIN git-receive-pack
BUILTIN git-reflog
BUILTIN git-remote-ext
BUILTIN git-remote-fd
BUILTIN git-remote
BUILTIN git-repack
BUILTIN git-replace
BUILTIN git-rerere
BUILTIN git-reset
BUILTIN git-rev-list
BUILTIN git-rev-parse
BUILTIN git-revert
BUILTIN git-rm
BUILTIN git-send-pack
BUILTIN git-shortlog
BUILTIN git-show-branch
BUILTIN git-show-index
BUILTIN git-show-ref
BUILTIN git-sparse-checkout
BUILTIN git-stash
BUILTIN git-submodule--helper
BUILTIN git-stripspace
BUILTIN git-symbolic-ref
BUILTIN git-tag
BUILTIN git-unpack-file
BUILTIN git-unpack-objects
BUILTIN git-update-index
BUILTIN git-update-ref
BUILTIN git-update-server-info
BUILTIN git-upload-archive
BUILTIN git-upload-pack
BUILTIN git-var
BUILTIN git-verify-commit
BUILTIN git-verify-pack
BUILTIN git-verify-tag
BUILTIN git-worktree
BUILTIN git-cherry
BUILTIN git-write-tree
BUILTIN git-cherry-pick
BUILTIN git-format-patch
BUILTIN git-fsck-objects
BUILTIN git-init
BUILTIN git-maintenance
BUILTIN git-merge-subtree
BUILTIN git-restore
BUILTIN git-show
BUILTIN git-stage
BUILTIN git-status
BUILTIN git-switch
BUILTIN git-whatchanged
SUBDIR git-gui
GITGUI_VERSION = 0.21.0.99.gdf4f9
* new locations or Tcl/Tk interpreter
MSGFMT po/bg.msg MSGFMT po/de.msg MSGFMT po/el.msg MSGFMT po/fr.msg MSGFMT po/hu.msg 520 translated.
579 translated.
565 translated.
MSGFMT po/it.msg MSGFMT po/ja.msg 381 translated, 4 fuzzy, 6 untranslated.
MSGFMT po/nb.msg 514 translated.
MSGFMT po/pt_br.msg 519 translated, 1 untranslated.
MSGFMT po/pt_pt.msg 546 translated, 1 untranslated.
MSGFMT po/ru.msg 474 translated, 39 untranslated.
MSGFMT po/sv.msg MSGFMT po/vi.msg 550 translated.
MSGFMT po/zh_cn.msg 547 translated.
543 translated.
GEN git-gui
INDEX lib/
520 translated.
579 translated.
366 translated, 7 fuzzy, 17 untranslated.
SUBDIR gitk-git
Generating catalog po/bg.msg
msgfmt --statistics --tcl po/bg.po -l bg -d po/
* new Tcl/Tk interpreter location
Generating catalog po/ca.msg
Generating catalog po/de.msg
msgfmt --statistics --tcl po/ca.po -l ca -d po/
msgfmt --statistics --tcl po/de.po -l de -d po/
Generating catalog po/es.msg
msgfmt --statistics --tcl po/es.po -l es -d po/
Generating catalog po/fr.msg
msgfmt --statistics --tcl po/fr.po -l fr -d po/
307 translated messages.
307 translated messages.
Generating catalog po/hu.msg
msgfmt --statistics --tcl po/hu.po -l hu -d po/
317 translated messages.
184 translated messagesGenerating catalog po/it.msg
, 46 fuzzy translations, 77 untranslated messages.
msgfmt --statistics --tcl po/it.po -l it -d po/
Generating catalog po/ja.msg
msgfmt --statistics --tcl po/ja.po -l ja -d po/
311 translated messages.
Generating catalog po/pt_br.msg
msgfmt --statistics --tcl po/pt_br.po -l pt_br -d po/
Generating catalog po/pt_pt.msg
msgfmt --statistics --tcl po/pt_pt.po -l pt_pt -d po/
277 translated messages, 18 fuzzy translations, 12 untranslated messages.
274 translated messages, 17 fuzzy translations, 16 untranslated messages.
311 translated messagesGenerating catalog po/ru.msg
.
msgfmt --statistics --tcl po/ru.po -l ru -d po/
279 translated messages, 16 fuzzy translations, 12 untranslated messages.
Generating catalog po/sv.msg
msgfmt --statistics --tcl po/sv.po -l sv -d po/
311 translated messages.
Generating catalog po/vi.msg
msgfmt --statistics --tcl po/vi.po -l vi -d po/
Generating catalog po/zh_cn.msg
msgfmt --statistics --tcl po/zh_cn.po -l zh_cn -d po/
GEN gitk-wish
317 translated messages.
311 translated messages.
307 translated messages.
317 translated messages.
SUBDIR templates
MKDIR -p po/build/locale/bg/LC_MESSAGES
MSGFMT po/build/locale/bg/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/ca/LC_MESSAGES
MSGFMT po/build/locale/ca/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/de/LC_MESSAGES
MSGFMT po/build/locale/de/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/el/LC_MESSAGES
MSGFMT po/build/locale/el/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/es/LC_MESSAGES
MSGFMT po/build/locale/es/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/fr/LC_MESSAGES
MSGFMT po/build/locale/fr/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/id/LC_MESSAGES
MSGFMT po/build/locale/id/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/is/LC_MESSAGES
MSGFMT po/build/locale/is/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/it/LC_MESSAGES
MSGFMT po/build/locale/it/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/ko/LC_MESSAGES
MSGFMT po/build/locale/ko/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/pl/LC_MESSAGES
MSGFMT po/build/locale/pl/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/pt_PT/LC_MESSAGES
MSGFMT po/build/locale/pt_PT/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/ru/LC_MESSAGES
MSGFMT po/build/locale/ru/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/sv/LC_MESSAGES
MSGFMT po/build/locale/sv/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/tr/LC_MESSAGES
MSGFMT po/build/locale/tr/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/vi/LC_MESSAGES
MSGFMT po/build/locale/vi/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/zh_CN/LC_MESSAGES
MSGFMT po/build/locale/zh_CN/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/zh_TW/LC_MESSAGES
MSGFMT po/build/locale/zh_TW/LC_MESSAGES/git.mo
MKDIR -p perl/build/lib
MKDIR -p perl/build/lib/Git
GEN perl/build/lib/Git.pm
GEN perl/build/lib/Git/IndexInfo.pm
GEN perl/build/lib/Git/LoadCPAN.pm
GEN perl/build/lib/Git/Packet.pm
GEN perl/build/lib/Git/I18N.pm
GEN perl/build/lib/Git/SVN.pm
MKDIR -p perl/build/lib/Git/LoadCPAN
GEN perl/build/lib/Git/LoadCPAN/Error.pm
MKDIR -p perl/build/lib/Git/SVN
GEN perl/build/lib/Git/SVN/Fetcher.pm
GEN perl/build/lib/Git/SVN/GlobSpec.pm
GEN perl/build/lib/Git/SVN/Log.pm
GEN perl/build/lib/Git/SVN/Editor.pm
GEN perl/build/lib/Git/SVN/Migration.pm
GEN perl/build/lib/Git/SVN/Prompt.pm
GEN perl/build/lib/Git/SVN/Ra.pm
GEN perl/build/lib/Git/SVN/Utils.pm
MKDIR -p perl/build/lib/Git/LoadCPAN/Mail
GEN perl/build/lib/Git/LoadCPAN/Mail/Address.pm
MKDIR -p perl/build/lib/Git/SVN/Memoize
GEN perl/build/lib/Git/SVN/Memoize/YAML.pm
MKDIR -p perl/build/lib/FromCPAN
GEN perl/build/lib/FromCPAN/Error.pm
MKDIR -p perl/build/lib/FromCPAN/Mail
GEN perl/build/lib/FromCPAN/Mail/Address.pm
CC t/helper/test-fake-ssh.o
CC reftable/basics_test.o
CC reftable/block_test.o
CC reftable/dump.o
CC reftable/merged_test.o
CC reftable/pq_test.o
CC reftable/record_test.o
CC reftable/readwrite_test.o
CC reftable/refname_test.o
CC reftable/stack_test.o
CC reftable/test_framework.o
CC reftable/tree_test.o
CC t/helper/test-tool.o
CC t/helper/test-advise.o
CC t/helper/test-bitmap.o
CC t/helper/test-bloom.o
CC t/helper/test-chmtime.o
CC t/helper/test-config.o
CC t/helper/test-crontab.o
CC t/helper/test-csprng.o
CC t/helper/test-ctype.o
CC t/helper/test-date.o
CC t/helper/test-delta.o
CC t/helper/test-dir-iterator.o
CC t/helper/test-drop-caches.o
CC t/helper/test-dump-cache-tree.o
CC t/helper/test-dump-fsmonitor.o
CC t/helper/test-dump-split-index.o
CC t/helper/test-dump-untracked-cache.o
CC t/helper/test-example-decorate.o
CC t/helper/test-fast-rebase.o
CC t/helper/test-genrandom.o
CC t/helper/test-genzeros.o
CC t/helper/test-getcwd.o
CC t/helper/test-hash-speed.o
CC t/helper/test-hash.o
CC t/helper/test-hashmap.o
CC t/helper/test-index-version.o
CC t/helper/test-json-writer.o
CC t/helper/test-lazy-init-name-hash.o
CC t/helper/test-match-trees.o
CC t/helper/test-mergesort.o
CC t/helper/test-mktemp.o
CC t/helper/test-oid-array.o
CC t/helper/test-oidmap.o
CC t/helper/test-oidtree.o
CC t/helper/test-online-cpus.o
CC t/helper/test-parse-options.o
CC t/helper/test-parse-pathspec-file.o
CC t/helper/test-partial-clone.o
CC t/helper/test-path-utils.o
CC t/helper/test-pcre2-config.o
CC t/helper/test-pkt-line.o
CC t/helper/test-prio-queue.o
CC t/helper/test-proc-receive.o
CC t/helper/test-progress.o
CC t/helper/test-reach.o
CC t/helper/test-read-cache.o
CC t/helper/test-read-graph.o
CC t/helper/test-read-midx.o
CC t/helper/test-ref-store.o
CC t/helper/test-reftable.o
CC t/helper/test-regex.o
CC t/helper/test-repository.o
CC t/helper/test-revision-walking.o
CC t/helper/test-run-command.o
CC t/helper/test-scrap-cache-tree.o
CC t/helper/test-serve-v2.o
CC t/helper/test-sha1.o
CC t/helper/test-sha256.o
CC t/helper/test-sigchain.o
CC t/helper/test-simple-ipc.o
CC t/helper/test-strcmp-offset.o
CC t/helper/test-string-list.o
CC t/helper/test-submodule-config.o
CC t/helper/test-submodule-nested-repo-config.o
CC t/helper/test-subprocess.o
CC t/helper/test-trace2.o
CC t/helper/test-urlmatch-normalization.o
CC t/helper/test-userdiff.o
CC t/helper/test-wildmatch.o
CC t/helper/test-windows-named-pipe.o
CC t/helper/test-write-cache.o
CC t/helper/test-xml-encode.o
MKDIR -p bin-wrappers
GEN bin-wrappers/git
GEN bin-wrappers/git-receive-pack
GEN bin-wrappers/git-shell
GEN bin-wrappers/git-upload-archive
GEN bin-wrappers/git-upload-pack
GEN bin-wrappers/git-cvsserver
GEN bin-wrappers/test-fake-ssh
GEN bin-wrappers/test-tool
AR reftable/libreftable_test.a
LINK t/helper/test-fake-ssh
LINK t/helper/test-tool
ek@apok:~/src/git ((98f6a3a353...)|BISECTING)$ make prefix="$HOME/mygit" install
SUBDIR git-gui
SUBDIR gitk-git
SUBDIR templates
install -d -m 755 '/home/ek/mygit/bin'
install -d -m 755 '/home/ek/mygit/libexec/git-core'
install git-daemon git-http-backend git-imap-send git-sh-i18n--envsubst git-shell git-http-fetch git-http-push git-remote-http git-remote-https git-remote-ftp git-remote-ftps '/home/ek/mygit/libexec/git-core'
install git-bisect git-difftool--helper git-filter-branch git-merge-octopus git-merge-one-file git-merge-resolve git-mergetool git-quiltimport git-request-pull git-submodule git-web--browse git-add--interactive git-archimport git-cvsexportcommit git-cvsimport git-cvsserver git-send-email git-svn git-p4 git-instaweb '/home/ek/mygit/libexec/git-core'
install -m 644 git-mergetool--lib git-sh-i18n git-sh-setup '/home/ek/mygit/libexec/git-core'
install git git-receive-pack git-shell git-upload-archive git-upload-pack '/home/ek/mygit/bin'
install git-cvsserver '/home/ek/mygit/bin'
make -C templates DESTDIR='' install
make[1]: Entering directory '/home/ek/src/git/templates'
install -d -m 755 '/home/ek/mygit/share/git-core/templates'
(cd blt && tar cf - .) | \
(cd '/home/ek/mygit/share/git-core/templates' && umask 022 && tar xof -)
make[1]: Leaving directory '/home/ek/src/git/templates'
install -d -m 755 '/home/ek/mygit/libexec/git-core/mergetools'
install -m 644 mergetools/* '/home/ek/mygit/libexec/git-core/mergetools'
install -d -m 755 '/home/ek/mygit/share/locale'
(cd po/build/locale && tar cf - .) | \
(cd '/home/ek/mygit/share/locale' && umask 022 && tar xof -)
install -d -m 755 '/home/ek/mygit/share/perl5'
(cd perl/build/lib && tar cf - .) | \
(cd '/home/ek/mygit/share/perl5' && umask 022 && tar xof -)
make -C gitweb install
make[1]: Entering directory '/home/ek/src/git/gitweb'
make[2]: Entering directory '/home/ek/src/git'
make[2]: 'GIT-VERSION-FILE' is up to date.
make[2]: Leaving directory '/home/ek/src/git'
GEN gitweb.cgi
GEN static/gitweb.js
install -d -m 755 '/home/ek/mygit/share/gitweb'
install -m 755 gitweb.cgi '/home/ek/mygit/share/gitweb'
install -d -m 755 '/home/ek/mygit/share/gitweb/static'
install -m 644 static/gitweb.js static/gitweb.css static/git-logo.png static/git-favicon.png '/home/ek/mygit/share/gitweb/static'
make[1]: Leaving directory '/home/ek/src/git/gitweb'
make -C gitk-git install
make[1]: Entering directory '/home/ek/src/git/gitk-git'
install -d -m 755 '/home/ek/mygit/bin'
install -m 755 gitk-wish '/home/ek/mygit/bin'/gitk
install -d -m 755 '/home/ek/mygit/share/gitk/lib/msgs'
install -m 644 po/bg.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/ca.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/de.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/es.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/fr.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/hu.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/it.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/ja.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/pt_br.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/pt_pt.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/ru.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/sv.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/vi.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/zh_cn.msg '/home/ek/mygit/share/gitk/lib/msgs' && true
make[1]: Leaving directory '/home/ek/src/git/gitk-git'
make -C git-gui gitexecdir='/home/ek/mygit/libexec/git-core' install
make[1]: Entering directory '/home/ek/src/git/git-gui'
DEST /home/ek/mygit/libexec/git-core
INSTALL 755 git-gui
INSTALL 755 git-gui--askpass
LINK git-citool -> git-gui
DEST /home/ek/mygit/share/git-gui/lib
INSTALL 644 tclIndex
INSTALL 644 about.tcl
INSTALL 644 blame.tcl
INSTALL 644 branch_checkout.tcl
INSTALL 644 branch_create.tcl
INSTALL 644 branch_delete.tcl
INSTALL 644 branch_rename.tcl
INSTALL 644 branch.tcl
INSTALL 644 browser.tcl
INSTALL 644 checkout_op.tcl
INSTALL 644 choose_font.tcl
INSTALL 644 choose_repository.tcl
INSTALL 644 choose_rev.tcl
INSTALL 644 chord.tcl
INSTALL 644 class.tcl
INSTALL 644 commit.tcl
INSTALL 644 console.tcl
INSTALL 644 database.tcl
INSTALL 644 date.tcl
INSTALL 644 diff.tcl
INSTALL 644 encoding.tcl
INSTALL 644 error.tcl
INSTALL 644 index.tcl
INSTALL 644 line.tcl
INSTALL 644 logo.tcl
INSTALL 644 merge.tcl
INSTALL 644 mergetool.tcl
INSTALL 644 option.tcl
INSTALL 644 remote_add.tcl
INSTALL 644 remote_branch_delete.tcl
INSTALL 644 remote.tcl
INSTALL 644 search.tcl
INSTALL 644 shortcut.tcl
INSTALL 644 spellcheck.tcl
INSTALL 644 sshkey.tcl
INSTALL 644 status_bar.tcl
INSTALL 644 themed.tcl
INSTALL 644 tools_dlg.tcl
INSTALL 644 tools.tcl
INSTALL 644 transport.tcl
INSTALL 644 win32.tcl
INSTALL 644 git-gui.ico
INSTALL 644 win32_shortcut.js
DEST /home/ek/mygit/share/git-gui/lib/msgs
INSTALL 644 bg.msg
INSTALL 644 de.msg
INSTALL 644 el.msg
INSTALL 644 fr.msg
INSTALL 644 hu.msg
INSTALL 644 it.msg
INSTALL 644 ja.msg
INSTALL 644 nb.msg
INSTALL 644 pt_br.msg
INSTALL 644 pt_pt.msg
INSTALL 644 ru.msg
INSTALL 644 sv.msg
INSTALL 644 vi.msg
INSTALL 644 zh_cn.msg
make[1]: Leaving directory '/home/ek/src/git/git-gui'
bindir=$(cd '/home/ek/mygit/bin' && pwd) && \
execdir=$(cd '/home/ek/mygit/libexec/git-core' && pwd) && \
destdir_from_execdir_SQ=$(echo 'libexec/git-core' | sed -e 's|[^/][^/]*|..|g') && \
{ test "$bindir/" = "$execdir/" || \
for p in git git-shell git-cvsserver; do \
rm -f "$execdir/$p" && \
test -n "" && \
ln -s "$destdir_from_execdir_SQ/bin/$p" "$execdir/$p" || \
{ test -z "" && \
ln "$bindir/$p" "$execdir/$p" 2>/dev/null || \
cp "$bindir/$p" "$execdir/$p" || exit; } \
done; \
} && \
for p in git-receive-pack git-upload-archive git-upload-pack; do \
rm -f "$bindir/$p" && \
test -n "" && \
ln -s "git" "$bindir/$p" || \
{ test -z "" && \
ln "$bindir/git" "$bindir/$p" 2>/dev/null || \
ln -s "git" "$bindir/$p" 2>/dev/null || \
cp "$bindir/git" "$bindir/$p" || exit; }; \
done && \
for p in git-add git-am git-annotate git-apply git-archive git-bisect--helper git-blame git-branch git-bugreport git-bundle git-cat-file git-check-attr git-check-ignore git-check-mailmap git-check-ref-format git-checkout--worker git-checkout-index git-checkout git-clean git-clone git-column git-commit-graph git-commit-tree git-commit git-config git-count-objects git-credential-cache--daemon git-credential-cache git-credential-store git-credential git-describe git-diff-files git-diff-index git-diff-tree git-diff git-difftool git-env--helper git-fast-export git-fast-import git-fetch-pack git-fetch git-fmt-merge-msg git-for-each-ref git-for-each-repo git-fsck git-gc git-get-tar-commit-id git-grep git-hash-object git-help git-hook git-index-pack git-init-db git-interpret-trailers git-log git-ls-files git-ls-remote git-ls-tree git-mailinfo git-mailsplit git-merge-base git-merge-file git-merge-index git-merge-ours git-merge-recursive git-merge-tree git-merge git-mktag git-mktree git-multi-pack-index git-mv git-name-rev git-notes git-pack-objects git-pack-redundant git-pack-refs git-patch-id git-prune-packed git-prune git-pull git-push git-range-diff git-read-tree git-rebase git-receive-pack git-reflog git-remote-ext git-remote-fd git-remote git-repack git-replace git-rerere git-reset git-rev-list git-rev-parse git-revert git-rm git-send-pack git-shortlog git-show-branch git-show-index git-show-ref git-sparse-checkout git-stash git-stripspace git-submodule--helper git-symbolic-ref git-tag git-unpack-file git-unpack-objects git-update-index git-update-ref git-update-server-info git-upload-archive git-upload-pack git-var git-verify-commit git-verify-pack git-verify-tag git-worktree git-write-tree git-cherry git-cherry-pick git-format-patch git-fsck-objects git-init git-maintenance git-merge-subtree git-restore git-show git-stage git-status git-switch git-whatchanged; do \
rm -f "$execdir/$p" && \
if test -z ""; \
then \
test -n "" && \
ln -s "$destdir_from_execdir_SQ/bin/git" "$execdir/$p" || \
{ test -z "" && \
ln "$execdir/git" "$execdir/$p" 2>/dev/null || \
ln -s "git" "$execdir/$p" 2>/dev/null || \
cp "$execdir/git" "$execdir/$p" || exit; }; \
fi \
done && \
remote_curl_aliases="git-remote-https git-remote-ftp git-remote-ftps" && \
for p in $remote_curl_aliases; do \
rm -f "$execdir/$p" && \
test -n "" && \
ln -s "git-remote-http" "$execdir/$p" || \
{ test -z "" && \
ln "$execdir/git-remote-http" "$execdir/$p" 2>/dev/null || \
ln -s "git-remote-http" "$execdir/$p" 2>/dev/null || \
cp "$execdir/git-remote-http" "$execdir/$p" || exit; } \
done
ek@apok:~/src/git ((98f6a3a353...)|BISECTING)$ pushd ~/tmp
~/tmp ~/src/git
ek@apok:~/tmp$ PATH="$HOME/mygit/bin:$PATH" GIT_SSH_COMMAND='{ pid="$(ps -o ppid:1= -p "$$")"; ps -o pid:1=,cmd= -p "$pid"; awk -v RS=\\0 "/^GIT_CONFIG/ { print \" \" \$0 }" "/proc/$pid/environ"; } 1>&2; ssh' GIT_CONFIG_COUNT=1 GIT_CONFIG_KEY_0=foo.bar GIT_CONFIG_VALUE_0=baz git clone --recurse-submodules git@github.com:EliahKagan/has-nested-submodule.git
Cloning into 'has-nested-submodule'...
1070006 git clone --recurse-submodules git@github.com:EliahKagan/has-nested-submodule.git
GIT_CONFIG_COUNT=1
GIT_CONFIG_KEY_0=foo.bar
GIT_CONFIG_VALUE_0=baz
remote: Enumerating objects: 4, done.
remote: Counting objects: 100% (4/4), done.
remote: Compressing objects: 100% (4/4), done.
remote: Total 4 (delta 0), reused 4 (delta 0), pack-reused 0
Receiving objects: 100% (4/4), done.
Submodule 'has-submodule' (git@github.com:EliahKagan/has-submodule.git) registered for path 'has-submodule'
Cloning into '/home/ek/tmp/has-nested-submodule/has-submodule'...
1070047 /home/ek/mygit/libexec/git-core/git clone --no-checkout --progress --separate-git-dir /home/ek/tmp/has-nested-submodule/.git/modules/has-submodule --no-single-branch -- git@github.com:EliahKagan/has-submodule.git /home/ek/tmp/has-nested-submodule/has-submodule
GIT_CONFIG_COUNT=1
GIT_CONFIG_KEY_0=foo.bar
GIT_CONFIG_VALUE_0=baz
remote: Enumerating objects: 4, done.
remote: Counting objects: 100% (4/4), done.
remote: Compressing objects: 100% (4/4), done.
remote: Total 4 (delta 0), reused 4 (delta 0), pack-reused 0
Receiving objects: 100% (4/4), done.
Submodule path 'has-submodule': checked out '8de4a40d782ddfd338f2ada312714d60541c6f80'
Submodule 'trivial' (git@github.com:EliahKagan/trivial.git) registered for path 'has-submodule/trivial'
Cloning into '/home/ek/tmp/has-nested-submodule/has-submodule/trivial'...
1070066 /home/ek/mygit/libexec/git-core/git clone --no-checkout --progress --separate-git-dir /home/ek/tmp/has-nested-submodule/.git/modules/has-submodule/modules/trivial --no-single-branch -- git@github.com:EliahKagan/trivial.git /home/ek/tmp/has-nested-submodule/has-submodule/trivial
GIT_CONFIG_COUNT=1
GIT_CONFIG_KEY_0=foo.bar
GIT_CONFIG_VALUE_0=baz
remote: Enumerating objects: 3, done.
remote: Counting objects: 100% (3/3), done.
remote: Compressing objects: 100% (2/2), done.
remote: Total 3 (delta 0), reused 3 (delta 0), pack-reused 0
Receiving objects: 100% (3/3), done.
Submodule path 'has-submodule/trivial': checked out '656a18dc1e48e035a05a72011a62bca5f41fa07e'
ek@apok:~/tmp$ rm -rf has-nested-submodule/
ek@apok:~/tmp$ popd
~/src/git
ek@apok:~/src/git ((98f6a3a353...)|BISECTING)$ rm -r ~/mygit
ek@apok:~/src/git ((98f6a3a353...)|BISECTING)$ gix clean -xde
removing .depend/ (🗑️)
removing GIT-BUILD-OPTIONS (🗑️)
removing GIT-CFLAGS (🗑️)
removing GIT-LDFLAGS (🗑️)
removing GIT-PERL-DEFINES (🗑️)
removing GIT-PERL-HEADER (🗑️)
removing GIT-PREFIX (🗑️)
removing GIT-PYTHON-VARS (🗑️)
removing GIT-SCRIPT-DEFINES (🗑️)
removing GIT-USER-AGENT (🗑️)
removing GIT-VERSION-FILE (🗑️)
removing abspath.o (🗑️)
removing add-interactive.o (🗑️)
removing add-patch.o (🗑️)
removing advice.o (🗑️)
removing alias.o (🗑️)
removing alloc.o (🗑️)
removing apply.o (🗑️)
removing archive-tar.o (🗑️)
removing archive-zip.o (🗑️)
removing archive.o (🗑️)
removing attr.o (🗑️)
removing base85.o (🗑️)
removing bin-wrappers/ (🗑️)
removing bisect.o (🗑️)
removing blame.o (🗑️)
removing blob.o (🗑️)
removing bloom.o (🗑️)
removing branch.o (🗑️)
removing builtin/.depend/ (🗑️)
removing builtin/add.o (🗑️)
removing builtin/am.o (🗑️)
removing builtin/annotate.o (🗑️)
removing builtin/apply.o (🗑️)
removing builtin/archive.o (🗑️)
removing builtin/bisect--helper.o (🗑️)
removing builtin/blame.o (🗑️)
removing builtin/branch.o (🗑️)
removing builtin/bugreport.o (🗑️)
removing builtin/bundle.o (🗑️)
removing builtin/cat-file.o (🗑️)
removing builtin/check-attr.o (🗑️)
removing builtin/check-ignore.o (🗑️)
removing builtin/check-mailmap.o (🗑️)
removing builtin/check-ref-format.o (🗑️)
removing builtin/checkout--worker.o (🗑️)
removing builtin/checkout-index.o (🗑️)
removing builtin/checkout.o (🗑️)
removing builtin/clean.o (🗑️)
removing builtin/clone.o (🗑️)
removing builtin/column.o (🗑️)
removing builtin/commit-graph.o (🗑️)
removing builtin/commit-tree.o (🗑️)
removing builtin/commit.o (🗑️)
removing builtin/config.o (🗑️)
removing builtin/count-objects.o (🗑️)
removing builtin/credential-cache--daemon.o (🗑️)
removing builtin/credential-cache.o (🗑️)
removing builtin/credential-store.o (🗑️)
removing builtin/credential.o (🗑️)
removing builtin/describe.o (🗑️)
removing builtin/diff-files.o (🗑️)
removing builtin/diff-index.o (🗑️)
removing builtin/diff-tree.o (🗑️)
removing builtin/diff.o (🗑️)
removing builtin/difftool.o (🗑️)
removing builtin/env--helper.o (🗑️)
removing builtin/fast-export.o (🗑️)
removing builtin/fast-import.o (🗑️)
removing builtin/fetch-pack.o (🗑️)
removing builtin/fetch.o (🗑️)
removing builtin/fmt-merge-msg.o (🗑️)
removing builtin/for-each-ref.o (🗑️)
removing builtin/for-each-repo.o (🗑️)
removing builtin/fsck.o (🗑️)
removing builtin/gc.o (🗑️)
removing builtin/get-tar-commit-id.o (🗑️)
removing builtin/grep.o (🗑️)
removing builtin/hash-object.o (🗑️)
removing builtin/help.o (🗑️)
removing builtin/hook.o (🗑️)
removing builtin/index-pack.o (🗑️)
removing builtin/init-db.o (🗑️)
removing builtin/interpret-trailers.o (🗑️)
removing builtin/log.o (🗑️)
removing builtin/ls-files.o (🗑️)
removing builtin/ls-remote.o (🗑️)
removing builtin/ls-tree.o (🗑️)
removing builtin/mailinfo.o (🗑️)
removing builtin/mailsplit.o (🗑️)
removing builtin/merge-base.o (🗑️)
removing builtin/merge-file.o (🗑️)
removing builtin/merge-index.o (🗑️)
removing builtin/merge-ours.o (🗑️)
removing builtin/merge-recursive.o (🗑️)
removing builtin/merge-tree.o (🗑️)
removing builtin/merge.o (🗑️)
removing builtin/mktag.o (🗑️)
removing builtin/mktree.o (🗑️)
removing builtin/multi-pack-index.o (🗑️)
removing builtin/mv.o (🗑️)
removing builtin/name-rev.o (🗑️)
removing builtin/notes.o (🗑️)
removing builtin/pack-objects.o (🗑️)
removing builtin/pack-redundant.o (🗑️)
removing builtin/pack-refs.o (🗑️)
removing builtin/patch-id.o (🗑️)
removing builtin/prune-packed.o (🗑️)
removing builtin/prune.o (🗑️)
removing builtin/pull.o (🗑️)
removing builtin/push.o (🗑️)
removing builtin/range-diff.o (🗑️)
removing builtin/read-tree.o (🗑️)
removing builtin/rebase.o (🗑️)
removing builtin/receive-pack.o (🗑️)
removing builtin/reflog.o (🗑️)
removing builtin/remote-ext.o (🗑️)
removing builtin/remote-fd.o (🗑️)
removing builtin/remote.o (🗑️)
removing builtin/repack.o (🗑️)
removing builtin/replace.o (🗑️)
removing builtin/rerere.o (🗑️)
removing builtin/reset.o (🗑️)
removing builtin/rev-list.o (🗑️)
removing builtin/rev-parse.o (🗑️)
removing builtin/revert.o (🗑️)
removing builtin/rm.o (🗑️)
removing builtin/send-pack.o (🗑️)
removing builtin/shortlog.o (🗑️)
removing builtin/show-branch.o (🗑️)
removing builtin/show-index.o (🗑️)
removing builtin/show-ref.o (🗑️)
removing builtin/sparse-checkout.o (🗑️)
removing builtin/stash.o (🗑️)
removing builtin/stripspace.o (🗑️)
removing builtin/submodule--helper.o (🗑️)
removing builtin/symbolic-ref.o (🗑️)
removing builtin/tag.o (🗑️)
removing builtin/unpack-file.o (🗑️)
removing builtin/unpack-objects.o (🗑️)
removing builtin/update-index.o (🗑️)
removing builtin/update-ref.o (🗑️)
removing builtin/update-server-info.o (🗑️)
removing builtin/upload-archive.o (🗑️)
removing builtin/upload-pack.o (🗑️)
removing builtin/var.o (🗑️)
removing builtin/verify-commit.o (🗑️)
removing builtin/verify-pack.o (🗑️)
removing builtin/verify-tag.o (🗑️)
removing builtin/worktree.o (🗑️)
removing builtin/write-tree.o (🗑️)
removing bulk-checkin.o (🗑️)
removing bundle.o (🗑️)
removing cache-tree.o (🗑️)
removing cbtree.o (🗑️)
removing chdir-notify.o (🗑️)
removing checkout.o (🗑️)
removing chunk-format.o (🗑️)
removing color.o (🗑️)
removing column.o (🗑️)
removing combine-diff.o (🗑️)
removing command-list.h (🗑️)
removing commit-graph.o (🗑️)
removing commit-reach.o (🗑️)
removing commit.o (🗑️)
removing common-main.o (🗑️)
removing compat/.depend/ (🗑️)
removing compat/fopen.o (🗑️)
removing compat/linux/.depend/ (🗑️)
removing compat/linux/procinfo.o (🗑️)
removing compat/obstack.o (🗑️)
removing compat/qsort_s.o (🗑️)
removing compat/simple-ipc/.depend/ (🗑️)
removing compat/simple-ipc/ipc-shared.o (🗑️)
removing compat/simple-ipc/ipc-unix-socket.o (🗑️)
removing compat/strlcpy.o (🗑️)
removing compat/terminal.o (🗑️)
removing compat/zlib-uncompress2.o (🗑️)
removing config-list.h (🗑️)
removing config.o (🗑️)
removing connect.o (🗑️)
removing connected.o (🗑️)
removing contrib/scalar/.depend/ (🗑️)
removing convert.o (🗑️)
removing copy.o (🗑️)
removing credential.o (🗑️)
removing csum-file.o (🗑️)
removing ctype.o (🗑️)
removing daemon.o (🗑️)
removing date.o (🗑️)
removing decorate.o (🗑️)
removing delta-islands.o (🗑️)
removing diff-delta.o (🗑️)
removing diff-lib.o (🗑️)
removing diff-merges.o (🗑️)
removing diff-no-index.o (🗑️)
removing diff.o (🗑️)
removing diffcore-break.o (🗑️)
removing diffcore-delta.o (🗑️)
removing diffcore-order.o (🗑️)
removing diffcore-pickaxe.o (🗑️)
removing diffcore-rename.o (🗑️)
removing diffcore-rotate.o (🗑️)
removing dir-iterator.o (🗑️)
removing dir.o (🗑️)
removing editor.o (🗑️)
removing entry.o (🗑️)
removing environment.o (🗑️)
removing ewah/.depend/ (🗑️)
removing ewah/bitmap.o (🗑️)
removing ewah/ewah_bitmap.o (🗑️)
removing ewah/ewah_io.o (🗑️)
removing ewah/ewah_rlw.o (🗑️)
removing exec-cmd.o (🗑️)
removing fetch-negotiator.o (🗑️)
removing fetch-pack.o (🗑️)
removing fmt-merge-msg.o (🗑️)
removing fsck.o (🗑️)
removing fsmonitor.o (🗑️)
removing fuzz-commit-graph.o (🗑️)
removing fuzz-pack-headers.o (🗑️)
removing fuzz-pack-idx.o (🗑️)
removing gettext.o (🗑️)
removing git (🗑️)
removing git-add (🗑️)
removing git-add--interactive (🗑️)
removing git-am (🗑️)
removing git-annotate (🗑️)
removing git-apply (🗑️)
removing git-archimport (🗑️)
removing git-archive (🗑️)
removing git-bisect (🗑️)
removing git-bisect--helper (🗑️)
removing git-blame (🗑️)
removing git-branch (🗑️)
removing git-bugreport (🗑️)
removing git-bundle (🗑️)
removing git-cat-file (🗑️)
removing git-check-attr (🗑️)
removing git-check-ignore (🗑️)
removing git-check-mailmap (🗑️)
removing git-check-ref-format (🗑️)
removing git-checkout (🗑️)
removing git-checkout--worker (🗑️)
removing git-checkout-index (🗑️)
removing git-cherry (🗑️)
removing git-cherry-pick (🗑️)
removing git-clean (🗑️)
removing git-clone (🗑️)
removing git-column (🗑️)
removing git-commit (🗑️)
removing git-commit-graph (🗑️)
removing git-commit-tree (🗑️)
removing git-config (🗑️)
removing git-count-objects (🗑️)
removing git-credential (🗑️)
removing git-credential-cache (🗑️)
removing git-credential-cache--daemon (🗑️)
removing git-credential-store (🗑️)
removing git-cvsexportcommit (🗑️)
removing git-cvsimport (🗑️)
removing git-cvsserver (🗑️)
removing git-daemon (🗑️)
removing git-describe (🗑️)
removing git-diff (🗑️)
removing git-diff-files (🗑️)
removing git-diff-index (🗑️)
removing git-diff-tree (🗑️)
removing git-difftool (🗑️)
removing git-difftool--helper (🗑️)
removing git-env--helper (🗑️)
removing git-fast-export (🗑️)
removing git-fast-import (🗑️)
removing git-fetch (🗑️)
removing git-fetch-pack (🗑️)
removing git-filter-branch (🗑️)
removing git-fmt-merge-msg (🗑️)
removing git-for-each-ref (🗑️)
removing git-for-each-repo (🗑️)
removing git-format-patch (🗑️)
removing git-fsck (🗑️)
removing git-fsck-objects (🗑️)
removing git-gc (🗑️)
removing git-get-tar-commit-id (🗑️)
removing git-grep (🗑️)
removing git-gui/GIT-GUI-VARS (🗑️)
removing git-gui/GIT-VERSION-FILE (🗑️)
removing git-gui/git-gui (🗑️)
removing git-gui/lib/tclIndex (🗑️)
removing git-gui/po/bg.msg (🗑️)
removing git-gui/po/de.msg (🗑️)
removing git-gui/po/el.msg (🗑️)
removing git-gui/po/fr.msg (🗑️)
removing git-gui/po/hu.msg (🗑️)
removing git-gui/po/it.msg (🗑️)
removing git-gui/po/ja.msg (🗑️)
removing git-gui/po/nb.msg (🗑️)
removing git-gui/po/pt_br.msg (🗑️)
removing git-gui/po/pt_pt.msg (🗑️)
removing git-gui/po/ru.msg (🗑️)
removing git-gui/po/sv.msg (🗑️)
removing git-gui/po/vi.msg (🗑️)
removing git-gui/po/zh_cn.msg (🗑️)
removing git-hash-object (🗑️)
removing git-help (🗑️)
removing git-hook (🗑️)
removing git-http-backend (🗑️)
removing git-http-fetch (🗑️)
removing git-http-push (🗑️)
removing git-imap-send (🗑️)
removing git-index-pack (🗑️)
removing git-init (🗑️)
removing git-init-db (🗑️)
removing git-instaweb (🗑️)
removing git-interpret-trailers (🗑️)
removing git-log (🗑️)
removing git-ls-files (🗑️)
removing git-ls-remote (🗑️)
removing git-ls-tree (🗑️)
removing git-mailinfo (🗑️)
removing git-mailsplit (🗑️)
removing git-maintenance (🗑️)
removing git-merge (🗑️)
removing git-merge-base (🗑️)
removing git-merge-file (🗑️)
removing git-merge-index (🗑️)
removing git-merge-octopus (🗑️)
removing git-merge-one-file (🗑️)
removing git-merge-ours (🗑️)
removing git-merge-recursive (🗑️)
removing git-merge-resolve (🗑️)
removing git-merge-subtree (🗑️)
removing git-merge-tree (🗑️)
removing git-mergetool (🗑️)
removing git-mergetool--lib (🗑️)
removing git-mktag (🗑️)
removing git-mktree (🗑️)
removing git-multi-pack-index (🗑️)
removing git-mv (🗑️)
removing git-name-rev (🗑️)
removing git-notes (🗑️)
removing git-p4 (🗑️)
removing git-pack-objects (🗑️)
removing git-pack-redundant (🗑️)
removing git-pack-refs (🗑️)
removing git-patch-id (🗑️)
removing git-prune (🗑️)
removing git-prune-packed (🗑️)
removing git-pull (🗑️)
removing git-push (🗑️)
removing git-quiltimport (🗑️)
removing git-range-diff (🗑️)
removing git-read-tree (🗑️)
removing git-rebase (🗑️)
removing git-receive-pack (🗑️)
removing git-reflog (🗑️)
removing git-remote (🗑️)
removing git-remote-ext (🗑️)
removing git-remote-fd (🗑️)
removing git-remote-ftp (🗑️)
removing git-remote-ftps (🗑️)
removing git-remote-http (🗑️)
removing git-remote-https (🗑️)
removing git-repack (🗑️)
removing git-replace (🗑️)
removing git-request-pull (🗑️)
removing git-rerere (🗑️)
removing git-reset (🗑️)
removing git-restore (🗑️)
removing git-rev-list (🗑️)
removing git-rev-parse (🗑️)
removing git-revert (🗑️)
removing git-rm (🗑️)
removing git-send-email (🗑️)
removing git-send-pack (🗑️)
removing git-sh-i18n (🗑️)
removing git-sh-i18n--envsubst (🗑️)
removing git-sh-setup (🗑️)
removing git-shell (🗑️)
removing git-shortlog (🗑️)
removing git-show (🗑️)
removing git-show-branch (🗑️)
removing git-show-index (🗑️)
removing git-show-ref (🗑️)
removing git-sparse-checkout (🗑️)
removing git-stage (🗑️)
removing git-stash (🗑️)
removing git-status (🗑️)
removing git-stripspace (🗑️)
removing git-submodule (🗑️)
removing git-submodule--helper (🗑️)
removing git-svn (🗑️)
removing git-switch (🗑️)
removing git-symbolic-ref (🗑️)
removing git-tag (🗑️)
removing git-unpack-file (🗑️)
removing git-unpack-objects (🗑️)
removing git-update-index (🗑️)
removing git-update-ref (🗑️)
removing git-update-server-info (🗑️)
removing git-upload-archive (🗑️)
removing git-upload-pack (🗑️)
removing git-var (🗑️)
removing git-verify-commit (🗑️)
removing git-verify-pack (🗑️)
removing git-verify-tag (🗑️)
removing git-web--browse (🗑️)
removing git-whatchanged (🗑️)
removing git-worktree (🗑️)
removing git-write-tree (🗑️)
removing git.o (🗑️)
removing gitk-git/GIT-TCLTK-VARS (🗑️)
removing gitk-git/gitk-wish (🗑️)
removing gitk-git/po/bg.msg (🗑️)
removing gitk-git/po/ca.msg (🗑️)
removing gitk-git/po/de.msg (🗑️)
removing gitk-git/po/es.msg (🗑️)
removing gitk-git/po/fr.msg (🗑️)
removing gitk-git/po/hu.msg (🗑️)
removing gitk-git/po/it.msg (🗑️)
removing gitk-git/po/ja.msg (🗑️)
removing gitk-git/po/pt_br.msg (🗑️)
removing gitk-git/po/pt_pt.msg (🗑️)
removing gitk-git/po/ru.msg (🗑️)
removing gitk-git/po/sv.msg (🗑️)
removing gitk-git/po/vi.msg (🗑️)
removing gitk-git/po/zh_cn.msg (🗑️)
removing gitweb/GITWEB-BUILD-OPTIONS (🗑️)
removing gitweb/gitweb.cgi (🗑️)
removing gitweb/static/gitweb.js (🗑️)
removing gpg-interface.o (🗑️)
removing graph.o (🗑️)
removing grep.o (🗑️)
removing hash-lookup.o (🗑️)
removing hashmap.o (🗑️)
removing help.o (🗑️)
removing hex.o (🗑️)
removing hook-list.h (🗑️)
removing hook.o (🗑️)
removing http-backend.o (🗑️)
removing http-fetch.o (🗑️)
removing http-push.o (🗑️)
removing http-walker.o (🗑️)
removing http.o (🗑️)
removing ident.o (🗑️)
removing imap-send.o (🗑️)
removing json-writer.o (🗑️)
removing kwset.o (🗑️)
removing levenshtein.o (🗑️)
removing libgit.a (🗑️)
removing line-log.o (🗑️)
removing line-range.o (🗑️)
removing linear-assignment.o (🗑️)
removing list-objects-filter-options.o (🗑️)
removing list-objects-filter.o (🗑️)
removing list-objects.o (🗑️)
removing ll-merge.o (🗑️)
removing lockfile.o (🗑️)
removing log-tree.o (🗑️)
removing ls-refs.o (🗑️)
removing mailinfo.o (🗑️)
removing mailmap.o (🗑️)
removing match-trees.o (🗑️)
removing mem-pool.o (🗑️)
removing merge-blobs.o (🗑️)
removing merge-ort-wrappers.o (🗑️)
removing merge-ort.o (🗑️)
removing merge-recursive.o (🗑️)
removing merge.o (🗑️)
removing mergesort.o (🗑️)
removing midx.o (🗑️)
removing name-hash.o (🗑️)
removing negotiator/.depend/ (🗑️)
removing negotiator/default.o (🗑️)
removing negotiator/noop.o (🗑️)
removing negotiator/skipping.o (🗑️)
removing notes-cache.o (🗑️)
removing notes-merge.o (🗑️)
removing notes-utils.o (🗑️)
removing notes.o (🗑️)
removing object-file.o (🗑️)
removing object-name.o (🗑️)
removing object.o (🗑️)
removing oid-array.o (🗑️)
removing oidmap.o (🗑️)
removing oidset.o (🗑️)
removing oidtree.o (🗑️)
removing pack-bitmap-write.o (🗑️)
removing pack-bitmap.o (🗑️)
removing pack-check.o (🗑️)
removing pack-objects.o (🗑️)
removing pack-revindex.o (🗑️)
removing pack-write.o (🗑️)
removing packfile.o (🗑️)
removing pager.o (🗑️)
removing parallel-checkout.o (🗑️)
removing parse-options-cb.o (🗑️)
removing parse-options.o (🗑️)
removing patch-delta.o (🗑️)
removing patch-ids.o (🗑️)
removing path.o (🗑️)
removing pathspec.o (🗑️)
removing perl/build/ (🗑️)
removing pkt-line.o (🗑️)
removing po/build/ (🗑️)
removing preload-index.o (🗑️)
removing pretty.o (🗑️)
removing prio-queue.o (🗑️)
removing progress.o (🗑️)
removing promisor-remote.o (🗑️)
removing prompt.o (🗑️)
removing protocol-caps.o (🗑️)
removing protocol.o (🗑️)
removing prune-packed.o (🗑️)
removing quote.o (🗑️)
removing range-diff.o (🗑️)
removing reachable.o (🗑️)
removing read-cache.o (🗑️)
removing rebase-interactive.o (🗑️)
removing rebase.o (🗑️)
removing ref-filter.o (🗑️)
removing reflog-walk.o (🗑️)
removing reflog.o (🗑️)
removing refs.o (🗑️)
removing refs/.depend/ (🗑️)
removing refs/debug.o (🗑️)
removing refs/files-backend.o (🗑️)
removing refs/iterator.o (🗑️)
removing refs/packed-backend.o (🗑️)
removing refs/ref-cache.o (🗑️)
removing refspec.o (🗑️)
removing reftable/.depend/ (🗑️)
removing reftable/basics.o (🗑️)
removing reftable/basics_test.o (🗑️)
removing reftable/block.o (🗑️)
removing reftable/block_test.o (🗑️)
removing reftable/blocksource.o (🗑️)
removing reftable/dump.o (🗑️)
removing reftable/error.o (🗑️)
removing reftable/generic.o (🗑️)
removing reftable/iter.o (🗑️)
removing reftable/libreftable.a (🗑️)
removing reftable/libreftable_test.a (🗑️)
removing reftable/merged.o (🗑️)
removing reftable/merged_test.o (🗑️)
removing reftable/pq.o (🗑️)
removing reftable/pq_test.o (🗑️)
removing reftable/publicbasics.o (🗑️)
removing reftable/reader.o (🗑️)
removing reftable/readwrite_test.o (🗑️)
removing reftable/record.o (🗑️)
removing reftable/record_test.o (🗑️)
removing reftable/refname.o (🗑️)
removing reftable/refname_test.o (🗑️)
removing reftable/stack.o (🗑️)
removing reftable/stack_test.o (🗑️)
removing reftable/test_framework.o (🗑️)
removing reftable/tree.o (🗑️)
removing reftable/tree_test.o (🗑️)
removing reftable/writer.o (🗑️)
removing remote-curl.o (🗑️)
removing remote.o (🗑️)
removing replace-object.o (🗑️)
removing repo-settings.o (🗑️)
removing repository.o (🗑️)
removing rerere.o (🗑️)
removing reset.o (🗑️)
removing resolve-undo.o (🗑️)
removing revision.o (🗑️)
removing run-command.o (🗑️)
removing send-pack.o (🗑️)
removing sequencer.o (🗑️)
removing serve.o (🗑️)
removing server-info.o (🗑️)
removing setup.o (🗑️)
removing sh-i18n--envsubst.o (🗑️)
removing sha1dc/.depend/ (🗑️)
removing sha1dc/sha1.o (🗑️)
removing sha1dc/ubc_check.o (🗑️)
removing sha1dc_git.o (🗑️)
removing sha256/block/.depend/ (🗑️)
removing sha256/block/sha256.o (🗑️)
removing shallow.o (🗑️)
removing shell.o (🗑️)
removing sideband.o (🗑️)
removing sigchain.o (🗑️)
removing sparse-index.o (🗑️)
removing split-index.o (🗑️)
removing stable-qsort.o (🗑️)
removing strbuf.o (🗑️)
removing streaming.o (🗑️)
removing string-list.o (🗑️)
removing strmap.o (🗑️)
removing strvec.o (🗑️)
removing sub-process.o (🗑️)
removing submodule-config.o (🗑️)
removing submodule.o (🗑️)
removing symlinks.o (🗑️)
removing t/helper/.depend/ (🗑️)
removing t/helper/test-advise.o (🗑️)
removing t/helper/test-bitmap.o (🗑️)
removing t/helper/test-bloom.o (🗑️)
removing t/helper/test-chmtime.o (🗑️)
removing t/helper/test-config.o (🗑️)
removing t/helper/test-crontab.o (🗑️)
removing t/helper/test-csprng.o (🗑️)
removing t/helper/test-ctype.o (🗑️)
removing t/helper/test-date.o (🗑️)
removing t/helper/test-delta.o (🗑️)
removing t/helper/test-dir-iterator.o (🗑️)
removing t/helper/test-drop-caches.o (🗑️)
removing t/helper/test-dump-cache-tree.o (🗑️)
removing t/helper/test-dump-fsmonitor.o (🗑️)
removing t/helper/test-dump-split-index.o (🗑️)
removing t/helper/test-dump-untracked-cache.o (🗑️)
removing t/helper/test-example-decorate.o (🗑️)
removing t/helper/test-fake-ssh (🗑️)
removing t/helper/test-fake-ssh.o (🗑️)
removing t/helper/test-fast-rebase.o (🗑️)
removing t/helper/test-genrandom.o (🗑️)
removing t/helper/test-genzeros.o (🗑️)
removing t/helper/test-getcwd.o (🗑️)
removing t/helper/test-hash-speed.o (🗑️)
removing t/helper/test-hash.o (🗑️)
removing t/helper/test-hashmap.o (🗑️)
removing t/helper/test-index-version.o (🗑️)
removing t/helper/test-json-writer.o (🗑️)
removing t/helper/test-lazy-init-name-hash.o (🗑️)
removing t/helper/test-match-trees.o (🗑️)
removing t/helper/test-mergesort.o (🗑️)
removing t/helper/test-mktemp.o (🗑️)
removing t/helper/test-oid-array.o (🗑️)
removing t/helper/test-oidmap.o (🗑️)
removing t/helper/test-oidtree.o (🗑️)
removing t/helper/test-online-cpus.o (🗑️)
removing t/helper/test-parse-options.o (🗑️)
removing t/helper/test-parse-pathspec-file.o (🗑️)
removing t/helper/test-partial-clone.o (🗑️)
removing t/helper/test-path-utils.o (🗑️)
removing t/helper/test-pcre2-config.o (🗑️)
removing t/helper/test-pkt-line.o (🗑️)
removing t/helper/test-prio-queue.o (🗑️)
removing t/helper/test-proc-receive.o (🗑️)
removing t/helper/test-progress.o (🗑️)
removing t/helper/test-reach.o (🗑️)
removing t/helper/test-read-cache.o (🗑️)
removing t/helper/test-read-graph.o (🗑️)
removing t/helper/test-read-midx.o (🗑️)
removing t/helper/test-ref-store.o (🗑️)
removing t/helper/test-reftable.o (🗑️)
removing t/helper/test-regex.o (🗑️)
removing t/helper/test-repository.o (🗑️)
removing t/helper/test-revision-walking.o (🗑️)
removing t/helper/test-run-command.o (🗑️)
removing t/helper/test-scrap-cache-tree.o (🗑️)
removing t/helper/test-serve-v2.o (🗑️)
removing t/helper/test-sha1.o (🗑️)
removing t/helper/test-sha256.o (🗑️)
removing t/helper/test-sigchain.o (🗑️)
removing t/helper/test-simple-ipc.o (🗑️)
removing t/helper/test-strcmp-offset.o (🗑️)
removing t/helper/test-string-list.o (🗑️)
removing t/helper/test-submodule-config.o (🗑️)
removing t/helper/test-submodule-nested-repo-config.o (🗑️)
removing t/helper/test-subprocess.o (🗑️)
removing t/helper/test-tool (🗑️)
removing t/helper/test-tool.o (🗑️)
removing t/helper/test-trace2.o (🗑️)
removing t/helper/test-urlmatch-normalization.o (🗑️)
removing t/helper/test-userdiff.o (🗑️)
removing t/helper/test-wildmatch.o (🗑️)
removing t/helper/test-windows-named-pipe.o (🗑️)
removing t/helper/test-write-cache.o (🗑️)
removing t/helper/test-xml-encode.o (🗑️)
removing tag.o (🗑️)
removing tempfile.o (🗑️)
removing templates/blt/ (🗑️)
removing templates/boilerplates.made (🗑️)
removing thread-utils.o (🗑️)
removing tmp-objdir.o (🗑️)
removing trace.o (🗑️)
removing trace2.o (🗑️)
removing trace2/.depend/ (🗑️)
removing trace2/tr2_cfg.o (🗑️)
removing trace2/tr2_cmd_name.o (🗑️)
removing trace2/tr2_dst.o (🗑️)
removing trace2/tr2_sid.o (🗑️)
removing trace2/tr2_sysenv.o (🗑️)
removing trace2/tr2_tbuf.o (🗑️)
removing trace2/tr2_tgt_event.o (🗑️)
removing trace2/tr2_tgt_normal.o (🗑️)
removing trace2/tr2_tgt_perf.o (🗑️)
removing trace2/tr2_tls.o (🗑️)
removing trailer.o (🗑️)
removing transport-helper.o (🗑️)
removing transport.o (🗑️)
removing tree-diff.o (🗑️)
removing tree-walk.o (🗑️)
removing tree.o (🗑️)
removing unix-socket.o (🗑️)
removing unix-stream-server.o (🗑️)
removing unpack-trees.o (🗑️)
removing upload-pack.o (🗑️)
removing url.o (🗑️)
removing urlmatch.o (🗑️)
removing usage.o (🗑️)
removing userdiff.o (🗑️)
removing utf8.o (🗑️)
removing varint.o (🗑️)
removing version.o (🗑️)
removing versioncmp.o (🗑️)
removing walker.o (🗑️)
removing wildmatch.o (🗑️)
removing worktree.o (🗑️)
removing wrapper.o (🗑️)
removing write-or-die.o (🗑️)
removing ws.o (🗑️)
removing wt-status.o (🗑️)
removing xdiff-interface.o (🗑️)
removing xdiff/.depend/ (🗑️)
removing xdiff/lib.a (🗑️)
removing xdiff/xdiffi.o (🗑️)
removing xdiff/xemit.o (🗑️)
removing xdiff/xhistogram.o (🗑️)
removing xdiff/xmerge.o (🗑️)
removing xdiff/xpatience.o (🗑️)
removing xdiff/xprepare.o (🗑️)
removing xdiff/xutils.o (🗑️)
removing zlib.o (🗑️)
ek@apok:~/src/git ((98f6a3a353...)|BISECTING)$ git bisect new
Bisecting: 8 revisions left to test after this (roughly 3 steps)
[cf0e875cd823b6e2a17f387a9c83ec7dd96aac00] Merge branch 'gc/submodule-update-part2'
ek@apok:~/src/git ((cf0e875cd8...)|BISECTING)$ make prefix="$HOME/mygit" -j5
GIT_VERSION = 2.35.1.780.gcf0e875cd8
* new build flags
CC fuzz-commit-graph.o
CC fuzz-pack-headers.o
CC fuzz-pack-idx.o
CC daemon.o
CC common-main.o
* new link flags
CC abspath.o
CC add-interactive.o
CC add-patch.o
CC advice.o
CC alias.o
CC alloc.o
CC apply.o
CC archive-tar.o
CC archive-zip.o
CC archive.o
* new prefix flags
CC base85.o
CC bisect.o
CC blame.o
CC blob.o
CC bloom.o
CC branch.o
CC bulk-checkin.o
CC bundle.o
CC cache-tree.o
CC cbtree.o
CC chdir-notify.o
CC checkout.o
CC chunk-format.o
CC color.o
CC column.o
CC combine-diff.o
CC commit-graph.o
CC commit-reach.o
CC commit.o
CC compat/obstack.o
CC compat/terminal.o
CC compat/zlib-uncompress2.o
CC config.o
CC connect.o
CC connected.o
CC convert.o
CC copy.o
CC credential.o
CC csum-file.o
CC ctype.o
CC date.o
CC decorate.o
CC delta-islands.o
CC diff-delta.o
CC diff-merges.o
CC diff-lib.o
CC diff-no-index.o
CC diff.o
CC diffcore-break.o
CC diffcore-delta.o
CC diffcore-order.o
CC diffcore-pickaxe.o
CC diffcore-rename.o
CC diffcore-rotate.o
CC dir-iterator.o
CC dir.o
CC editor.o
CC entry.o
CC environment.o
CC ewah/bitmap.o
CC ewah/ewah_bitmap.o
CC ewah/ewah_io.o
CC ewah/ewah_rlw.o
CC exec-cmd.o
CC fetch-negotiator.o
CC fetch-pack.o
CC fmt-merge-msg.o
CC fsck.o
CC fsmonitor.o
CC gettext.o
CC gpg-interface.o
CC graph.o
CC grep.o
CC hash-lookup.o
CC hashmap.o
GEN command-list.h
CC hex.o
CC hook.o
CC ident.o
CC json-writer.o
CC kwset.o
CC levenshtein.o
CC line-log.o
CC line-range.o
CC linear-assignment.o
CC list-objects-filter-options.o
CC list-objects-filter.o
CC list-objects.o
CC ll-merge.o
CC lockfile.o
CC log-tree.o
CC ls-refs.o
CC mailinfo.o
CC mailmap.o
CC match-trees.o
CC mem-pool.o
CC merge-blobs.o
CC merge-ort.o
CC merge-ort-wrappers.o
CC merge-recursive.o
CC merge.o
CC mergesort.o
CC midx.o
CC name-hash.o
CC negotiator/default.o
CC negotiator/noop.o
CC negotiator/skipping.o
CC notes-cache.o
CC notes-merge.o
CC notes-utils.o
CC notes.o
CC object-file.o
CC object-name.o
CC object.o
CC oid-array.o
CC oidmap.o
CC oidset.o
CC oidtree.o
CC pack-bitmap-write.o
CC pack-bitmap.o
CC pack-check.o
CC pack-objects.o
CC pack-revindex.o
CC pack-write.o
CC packfile.o
CC pager.o
CC parallel-checkout.o
CC parse-options-cb.o
CC parse-options.o
CC patch-delta.o
CC patch-ids.o
CC path.o
CC pathspec.o
CC pkt-line.o
CC preload-index.o
CC pretty.o
CC prio-queue.o
CC progress.o
CC promisor-remote.o
CC prompt.o
CC protocol.o
CC protocol-caps.o
CC prune-packed.o
CC quote.o
CC range-diff.o
CC reachable.o
CC read-cache.o
CC rebase-interactive.o
CC rebase.o
CC ref-filter.o
CC reflog-walk.o
CC reflog.o
CC refs.o
CC refs/debug.o
CC refs/files-backend.o
CC refs/iterator.o
CC refs/packed-backend.o
CC refs/ref-cache.o
CC refspec.o
CC remote.o
CC replace-object.o
CC repo-settings.o
CC repository.o
CC rerere.o
CC reset.o
CC resolve-undo.o
CC revision.o
CC run-command.o
CC send-pack.o
CC sequencer.o
CC serve.o
CC server-info.o
CC setup.o
CC shallow.o
CC sideband.o
CC sigchain.o
CC sparse-index.o
CC split-index.o
CC stable-qsort.o
CC strbuf.o
CC streaming.o
CC string-list.o
CC strmap.o
CC strvec.o
CC sub-process.o
CC submodule-config.o
CC submodule.o
CC symlinks.o
CC tag.o
CC tempfile.o
CC thread-utils.o
CC tmp-objdir.o
CC trace.o
CC trace2.o
CC trace2/tr2_cfg.o
CC trace2/tr2_cmd_name.o
CC trace2/tr2_dst.o
CC trace2/tr2_sid.o
CC trace2/tr2_sysenv.o
CC trace2/tr2_tbuf.o
CC trace2/tr2_tgt_event.o
CC trace2/tr2_tgt_normal.o
CC trace2/tr2_tgt_perf.o
CC trace2/tr2_tls.o
CC trailer.o
CC transport-helper.o
CC transport.o
CC tree-diff.o
CC tree-walk.o
CC tree.o
CC unpack-trees.o
CC upload-pack.o
CC url.o
CC urlmatch.o
CC usage.o
CC userdiff.o
CC utf8.o
CC varint.o
CC versioncmp.o
CC walker.o
CC wildmatch.o
CC worktree.o
CC wrapper.o
CC write-or-die.o
CC ws.o
CC wt-status.o
CC xdiff-interface.o
CC zlib.o
CC unix-socket.o
CC unix-stream-server.o
CC compat/simple-ipc/ipc-shared.o
CC compat/simple-ipc/ipc-unix-socket.o
CC sha1dc_git.o
CC sha1dc/sha1.o
CC sha1dc/ubc_check.o
CC sha256/block/sha256.o
CC compat/linux/procinfo.o
CC compat/fopen.o
CC compat/strlcpy.o
CC compat/qsort_s.o
CC xdiff/xdiffi.o
CC xdiff/xemit.o
CC xdiff/xhistogram.o
CC xdiff/xmerge.o
CC xdiff/xpatience.o
CC xdiff/xprepare.o
CC xdiff/xutils.o
CC reftable/basics.o
CC reftable/error.o
CC reftable/block.o
CC reftable/blocksource.o
CC reftable/iter.o
CC reftable/publicbasics.o
CC reftable/merged.o
CC reftable/pq.o
CC reftable/reader.o
CC reftable/record.o
CC reftable/refname.o
CC reftable/generic.o
CC reftable/stack.o
CC reftable/tree.o
CC reftable/writer.o
CC http-backend.o
CC imap-send.o
CC http.o
CC sh-i18n--envsubst.o
CC shell.o
CC http-walker.o
CC http-fetch.o
CC http-push.o
CC remote-curl.o
* new script parameters
* new perl-specific parameters
* new Python interpreter location
GEN git-instaweb
CC git.o
CC builtin/add.o
CC builtin/am.o
CC builtin/annotate.o
CC builtin/apply.o
CC builtin/archive.o
CC builtin/bisect--helper.o
CC builtin/blame.o
CC builtin/branch.o
GEN hook-list.h
CC builtin/bundle.o
CC builtin/cat-file.o
CC builtin/check-attr.o
CC builtin/check-ignore.o
CC builtin/check-mailmap.o
CC builtin/check-ref-format.o
CC builtin/checkout--worker.o
CC builtin/checkout-index.o
CC builtin/checkout.o
CC builtin/clean.o
CC builtin/clone.o
CC builtin/column.o
CC builtin/commit-graph.o
CC builtin/commit-tree.o
CC builtin/commit.o
CC builtin/config.o
CC builtin/count-objects.o
CC builtin/credential-cache--daemon.o
CC builtin/credential-cache.o
CC builtin/credential-store.o
CC builtin/credential.o
CC builtin/describe.o
CC builtin/diff-files.o
CC builtin/diff-index.o
CC builtin/diff-tree.o
CC builtin/diff.o
CC builtin/difftool.o
CC builtin/env--helper.o
CC builtin/fast-export.o
CC builtin/fast-import.o
CC builtin/fetch-pack.o
CC builtin/fetch.o
CC builtin/fmt-merge-msg.o
CC builtin/for-each-ref.o
CC builtin/for-each-repo.o
CC builtin/fsck.o
CC builtin/gc.o
CC builtin/get-tar-commit-id.o
CC builtin/grep.o
CC builtin/hash-object.o
GEN config-list.h
CC builtin/hook.o
CC builtin/index-pack.o
CC builtin/init-db.o
CC builtin/interpret-trailers.o
CC builtin/log.o
CC builtin/ls-files.o
CC builtin/ls-remote.o
CC builtin/ls-tree.o
CC builtin/mailinfo.o
CC builtin/mailsplit.o
CC builtin/merge-base.o
CC builtin/merge-file.o
CC builtin/merge-index.o
CC builtin/merge-ours.o
CC builtin/merge-recursive.o
CC builtin/merge-tree.o
CC builtin/merge.o
CC builtin/mktag.o
CC builtin/mktree.o
CC builtin/multi-pack-index.o
CC builtin/mv.o
CC builtin/name-rev.o
CC builtin/notes.o
CC builtin/pack-objects.o
CC builtin/pack-redundant.o
CC builtin/pack-refs.o
CC builtin/patch-id.o
CC builtin/prune-packed.o
CC builtin/prune.o
CC builtin/pull.o
CC builtin/push.o
CC builtin/range-diff.o
CC builtin/read-tree.o
CC builtin/rebase.o
CC builtin/receive-pack.o
CC builtin/reflog.o
CC builtin/remote-ext.o
CC builtin/remote-fd.o
CC builtin/remote.o
CC builtin/repack.o
CC builtin/replace.o
CC builtin/rerere.o
CC builtin/reset.o
CC builtin/rev-list.o
CC builtin/rev-parse.o
CC builtin/revert.o
CC builtin/rm.o
CC builtin/send-pack.o
CC builtin/shortlog.o
CC builtin/show-branch.o
CC builtin/show-index.o
CC builtin/show-ref.o
CC builtin/sparse-checkout.o
CC builtin/stash.o
CC builtin/stripspace.o
CC builtin/submodule--helper.o
CC builtin/symbolic-ref.o
CC builtin/tag.o
CC builtin/unpack-file.o
CC builtin/unpack-objects.o
CC builtin/update-index.o
CC builtin/update-ref.o
CC builtin/update-server-info.o
CC builtin/upload-archive.o
CC builtin/upload-pack.o
CC builtin/var.o
CC builtin/verify-commit.o
CC builtin/verify-pack.o
CC builtin/verify-tag.o
CC builtin/worktree.o
CC builtin/write-tree.o
GEN git-mergetool--lib
GEN git-sh-i18n
GEN git-sh-setup
CC attr.o
CC help.o
CC version.o
AR xdiff/lib.a
AR reftable/libreftable.a
GEN git-bisect
GEN git-difftool--helper
GEN git-filter-branch
GEN git-merge-octopus
GEN git-merge-one-file
GEN git-merge-resolve
GEN git-mergetool
GEN git-quiltimport
GEN git-request-pull
GEN git-submodule
GEN git-web--browse
GEN GIT-PERL-HEADER
GEN git-p4
CC builtin/bugreport.o
CC builtin/help.o
GEN git-add--interactive
GEN git-archimport
GEN git-cvsexportcommit
GEN git-cvsimport
GEN git-cvsserver
GEN git-send-email
GEN git-svn
AR libgit.a
LINK git-daemon
LINK git-http-backend
LINK git-imap-send
LINK git-sh-i18n--envsubst
LINK git-shell
LINK git-http-fetch
LINK git-http-push
LINK git-remote-http
LINK git
LN/CP git-remote-https
LN/CP git-remote-ftp
LN/CP git-remote-ftps
BUILTIN git-add
BUILTIN git-annotate
BUILTIN git-am
BUILTIN git-apply
BUILTIN git-archive
BUILTIN git-bisect--helper
BUILTIN git-blame
BUILTIN git-branch
BUILTIN git-bugreport
BUILTIN git-bundle
BUILTIN git-check-attr
BUILTIN git-check-ignore
BUILTIN git-cat-file
BUILTIN git-check-mailmap
BUILTIN git-check-ref-format
BUILTIN git-checkout--worker
BUILTIN git-checkout-index
BUILTIN git-checkout
BUILTIN git-clean
BUILTIN git-column
BUILTIN git-clone
BUILTIN git-commit-graph
BUILTIN git-commit-tree
BUILTIN git-commit
BUILTIN git-config
BUILTIN git-count-objects
BUILTIN git-credential-cache
BUILTIN git-credential-cache--daemon
BUILTIN git-credential-store
BUILTIN git-credential
BUILTIN git-describe
BUILTIN git-diff-files
BUILTIN git-diff-index
BUILTIN git-diff-tree
BUILTIN git-diff
BUILTIN git-difftool
BUILTIN git-env--helper
BUILTIN git-fast-export
BUILTIN git-fast-import
BUILTIN git-fetch-pack
BUILTIN git-fetch
BUILTIN git-for-each-ref
BUILTIN git-fmt-merge-msg
BUILTIN git-for-each-repo
BUILTIN git-fsck
BUILTIN git-gc
BUILTIN git-get-tar-commit-id
BUILTIN git-hash-object
BUILTIN git-grep
BUILTIN git-hook
BUILTIN git-help
BUILTIN git-index-pack
BUILTIN git-init-db
BUILTIN git-interpret-trailers
BUILTIN git-ls-files
BUILTIN git-log
BUILTIN git-ls-remote
BUILTIN git-ls-tree
BUILTIN git-mailinfo
BUILTIN git-mailsplit
BUILTIN git-merge-base
BUILTIN git-merge-file
BUILTIN git-merge-index
BUILTIN git-merge-ours
BUILTIN git-merge-tree
BUILTIN git-merge-recursive
BUILTIN git-merge
BUILTIN git-mktag
BUILTIN git-mktree
BUILTIN git-multi-pack-index
BUILTIN git-mv
BUILTIN git-name-rev
BUILTIN git-notes
BUILTIN git-pack-objects
BUILTIN git-pack-redundant
BUILTIN git-pack-refs
BUILTIN git-patch-id
BUILTIN git-prune
BUILTIN git-prune-packed
BUILTIN git-push
BUILTIN git-pull
BUILTIN git-range-diff
BUILTIN git-read-tree
BUILTIN git-rebase
BUILTIN git-receive-pack
BUILTIN git-reflog
BUILTIN git-remote-ext
BUILTIN git-remote
BUILTIN git-remote-fd
BUILTIN git-repack
BUILTIN git-replace
BUILTIN git-rerere
BUILTIN git-reset
BUILTIN git-rev-list
BUILTIN git-rev-parse
BUILTIN git-revert
BUILTIN git-send-pack
BUILTIN git-rm
BUILTIN git-shortlog
BUILTIN git-show-branch
BUILTIN git-show-index
BUILTIN git-show-ref
BUILTIN git-sparse-checkout
BUILTIN git-stash
BUILTIN git-stripspace
BUILTIN git-submodule--helper
BUILTIN git-symbolic-ref
BUILTIN git-tag
BUILTIN git-unpack-file
BUILTIN git-unpack-objects
BUILTIN git-update-index
BUILTIN git-update-ref
BUILTIN git-update-server-info
BUILTIN git-upload-archive
BUILTIN git-upload-pack
BUILTIN git-var
BUILTIN git-verify-commit
BUILTIN git-verify-pack
BUILTIN git-verify-tag
BUILTIN git-worktree
BUILTIN git-cherry
BUILTIN git-cherry-pick
BUILTIN git-write-tree
BUILTIN git-format-patch
BUILTIN git-fsck-objects
BUILTIN git-init
BUILTIN git-maintenance
BUILTIN git-merge-subtree
BUILTIN git-restore
BUILTIN git-show
BUILTIN git-stage
BUILTIN git-status
BUILTIN git-switch
BUILTIN git-whatchanged
SUBDIR git-gui
GITGUI_VERSION = 0.21.0.99.gdf4f9
* new locations or Tcl/Tk interpreter
MSGFMT po/bg.msg MSGFMT po/de.msg MSGFMT po/el.msg MSGFMT po/fr.msg MSGFMT po/hu.msg 381 translated, 4 fuzzy, 6 untranslated.
520 translated.
565 translated.
MSGFMT po/it.msg 579 translated.
MSGFMT po/ja.msg MSGFMT po/nb.msg MSGFMT po/pt_br.msg 514 translated.
MSGFMT po/pt_pt.msg 519 translated, 1 untranslated.
MSGFMT po/ru.msg 474 translated, 39 untranslated.
546 translated, 1 untranslated.
MSGFMT po/sv.msg 550 translated.
MSGFMT po/vi.msg MSGFMT po/zh_cn.msg 520 translated.
GEN git-gui
579 translated.
366 translated, 7 fuzzy, 17 untranslated.
INDEX lib/
547 translated.
543 translated.
SUBDIR gitk-git
Generating catalog po/bg.msg
Generating catalog po/ca.msg
Generating catalog po/de.msg
msgfmt --statistics --tcl po/bg.po -l bg -d po/
* new Tcl/Tk interpreter location
msgfmt --statistics --tcl po/ca.po -l ca -d po/
msgfmt --statistics --tcl po/de.po -l de -d po/
Generating catalog po/es.msg
msgfmt --statistics --tcl po/es.po -l es -d po/
Generating catalog po/fr.msg
msgfmt --statistics --tcl po/fr.po -l fr -d po/
317 translated messages307 translated messages.
.
307 translated messages.
184 translated messages, 46 fuzzy translations, 77 untranslated messages.
Generating catalog po/hu.msg
msgfmt --statistics --tcl po/hu.po -l hu -d po/
Generating catalog po/it.msg
msgfmt --statistics --tcl po/it.po -l it -d po/
Generating catalog po/ja.msg
311 translated messages.
274 translated messages, 17 fuzzy translations, 16 untranslated messages.
277 translated messages, 18 fuzzy translations, 12 untranslated messages.
msgfmt --statistics --tcl po/ja.po -l ja -d po/
Generating catalog po/pt_br.msg
msgfmt --statistics --tcl po/pt_br.po -l pt_br -d po/
Generating catalog po/pt_pt.msg
Generating catalog po/ru.msg
msgfmt --statistics --tcl po/pt_pt.po -l pt_pt -d po/
Generating catalog po/sv.msg
msgfmt --statistics --tcl po/ru.po -l ru -d po/
311 translated messages.
msgfmt --statistics --tcl po/sv.po -l sv -d po/
279 translated messages, 16 fuzzy translations, 12 untranslated messages.
311 translated messages.
Generating catalog po/vi.msg
Generating catalog po/zh_cn.msg
msgfmt --statistics --tcl po/vi.po -l vi -d po/
GEN gitk-wish
msgfmt --statistics --tcl po/zh_cn.po -l zh_cn -d po/
317 translated messages.
311 translated messages.
317 translated messages.
307 translated messages.
SUBDIR templates
MKDIR -p po/build/locale/bg/LC_MESSAGES
MSGFMT po/build/locale/bg/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/ca/LC_MESSAGES
MSGFMT po/build/locale/ca/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/de/LC_MESSAGES
MKDIR -p po/build/locale/el/LC_MESSAGES
MSGFMT po/build/locale/de/LC_MESSAGES/git.mo
MSGFMT po/build/locale/el/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/es/LC_MESSAGES
MSGFMT po/build/locale/es/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/fr/LC_MESSAGES
MSGFMT po/build/locale/fr/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/id/LC_MESSAGES
MSGFMT po/build/locale/id/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/is/LC_MESSAGES
MSGFMT po/build/locale/is/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/it/LC_MESSAGES
MSGFMT po/build/locale/it/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/ko/LC_MESSAGES
MSGFMT po/build/locale/ko/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/pl/LC_MESSAGES
MSGFMT po/build/locale/pl/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/pt_PT/LC_MESSAGES
MSGFMT po/build/locale/pt_PT/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/ru/LC_MESSAGES
MSGFMT po/build/locale/ru/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/sv/LC_MESSAGES
MSGFMT po/build/locale/sv/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/tr/LC_MESSAGES
MSGFMT po/build/locale/tr/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/vi/LC_MESSAGES
MSGFMT po/build/locale/vi/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/zh_CN/LC_MESSAGES
MSGFMT po/build/locale/zh_CN/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/zh_TW/LC_MESSAGES
MSGFMT po/build/locale/zh_TW/LC_MESSAGES/git.mo
MKDIR -p perl/build/lib
GEN perl/build/lib/Git.pm
MKDIR -p perl/build/lib/Git
GEN perl/build/lib/Git/I18N.pm
GEN perl/build/lib/Git/IndexInfo.pm
GEN perl/build/lib/Git/LoadCPAN.pm
GEN perl/build/lib/Git/Packet.pm
GEN perl/build/lib/Git/SVN.pm
MKDIR -p perl/build/lib/Git/LoadCPAN
GEN perl/build/lib/Git/LoadCPAN/Error.pm
MKDIR -p perl/build/lib/Git/SVN
GEN perl/build/lib/Git/SVN/Fetcher.pm
GEN perl/build/lib/Git/SVN/GlobSpec.pm
GEN perl/build/lib/Git/SVN/Editor.pm
GEN perl/build/lib/Git/SVN/Log.pm
GEN perl/build/lib/Git/SVN/Migration.pm
GEN perl/build/lib/Git/SVN/Ra.pm
GEN perl/build/lib/Git/SVN/Prompt.pm
GEN perl/build/lib/Git/SVN/Utils.pm
MKDIR -p perl/build/lib/Git/LoadCPAN/Mail
GEN perl/build/lib/Git/LoadCPAN/Mail/Address.pm
MKDIR -p perl/build/lib/Git/SVN/Memoize
GEN perl/build/lib/Git/SVN/Memoize/YAML.pm
MKDIR -p perl/build/lib/FromCPAN
GEN perl/build/lib/FromCPAN/Error.pm
MKDIR -p perl/build/lib/FromCPAN/Mail
GEN perl/build/lib/FromCPAN/Mail/Address.pm
CC reftable/basics_test.o
CC t/helper/test-fake-ssh.o
CC reftable/block_test.o
CC reftable/dump.o
CC reftable/merged_test.o
CC reftable/pq_test.o
CC reftable/record_test.o
CC reftable/readwrite_test.o
CC reftable/refname_test.o
CC reftable/stack_test.o
CC reftable/test_framework.o
CC reftable/tree_test.o
CC t/helper/test-tool.o
CC t/helper/test-advise.o
CC t/helper/test-bitmap.o
CC t/helper/test-bloom.o
CC t/helper/test-chmtime.o
CC t/helper/test-config.o
CC t/helper/test-crontab.o
CC t/helper/test-csprng.o
CC t/helper/test-ctype.o
CC t/helper/test-date.o
CC t/helper/test-delta.o
CC t/helper/test-dir-iterator.o
CC t/helper/test-drop-caches.o
CC t/helper/test-dump-cache-tree.o
CC t/helper/test-dump-fsmonitor.o
CC t/helper/test-dump-split-index.o
CC t/helper/test-dump-untracked-cache.o
CC t/helper/test-example-decorate.o
CC t/helper/test-fast-rebase.o
CC t/helper/test-genrandom.o
CC t/helper/test-genzeros.o
CC t/helper/test-getcwd.o
CC t/helper/test-hash-speed.o
CC t/helper/test-hash.o
CC t/helper/test-hashmap.o
CC t/helper/test-index-version.o
CC t/helper/test-json-writer.o
CC t/helper/test-lazy-init-name-hash.o
CC t/helper/test-match-trees.o
CC t/helper/test-mergesort.o
CC t/helper/test-mktemp.o
CC t/helper/test-oid-array.o
CC t/helper/test-oidmap.o
CC t/helper/test-oidtree.o
CC t/helper/test-online-cpus.o
CC t/helper/test-parse-options.o
CC t/helper/test-parse-pathspec-file.o
CC t/helper/test-partial-clone.o
CC t/helper/test-path-utils.o
CC t/helper/test-pcre2-config.o
CC t/helper/test-pkt-line.o
CC t/helper/test-prio-queue.o
CC t/helper/test-proc-receive.o
CC t/helper/test-progress.o
CC t/helper/test-reach.o
CC t/helper/test-read-cache.o
CC t/helper/test-read-graph.o
CC t/helper/test-read-midx.o
CC t/helper/test-ref-store.o
CC t/helper/test-reftable.o
CC t/helper/test-regex.o
CC t/helper/test-repository.o
CC t/helper/test-revision-walking.o
CC t/helper/test-run-command.o
CC t/helper/test-scrap-cache-tree.o
CC t/helper/test-serve-v2.o
CC t/helper/test-sha1.o
CC t/helper/test-sha256.o
CC t/helper/test-sigchain.o
CC t/helper/test-simple-ipc.o
CC t/helper/test-strcmp-offset.o
CC t/helper/test-string-list.o
CC t/helper/test-submodule-config.o
CC t/helper/test-submodule-nested-repo-config.o
CC t/helper/test-subprocess.o
CC t/helper/test-trace2.o
CC t/helper/test-urlmatch-normalization.o
CC t/helper/test-userdiff.o
CC t/helper/test-wildmatch.o
CC t/helper/test-windows-named-pipe.o
CC t/helper/test-write-cache.o
CC t/helper/test-xml-encode.o
MKDIR -p bin-wrappers
GEN bin-wrappers/git
GEN bin-wrappers/git-receive-pack
GEN bin-wrappers/git-shell
GEN bin-wrappers/git-upload-archive
GEN bin-wrappers/git-upload-pack
GEN bin-wrappers/git-cvsserver
GEN bin-wrappers/test-fake-ssh
GEN bin-wrappers/test-tool
AR reftable/libreftable_test.a
LINK t/helper/test-fake-ssh
LINK t/helper/test-tool
ek@apok:~/src/git ((cf0e875cd8...)|BISECTING)$ make prefix="$HOME/mygit" install
SUBDIR git-gui
SUBDIR gitk-git
SUBDIR templates
install -d -m 755 '/home/ek/mygit/bin'
install -d -m 755 '/home/ek/mygit/libexec/git-core'
install git-daemon git-http-backend git-imap-send git-sh-i18n--envsubst git-shell git-http-fetch git-http-push git-remote-http git-remote-https git-remote-ftp git-remote-ftps '/home/ek/mygit/libexec/git-core'
install git-bisect git-difftool--helper git-filter-branch git-merge-octopus git-merge-one-file git-merge-resolve git-mergetool git-quiltimport git-request-pull git-submodule git-web--browse git-add--interactive git-archimport git-cvsexportcommit git-cvsimport git-cvsserver git-send-email git-svn git-p4 git-instaweb '/home/ek/mygit/libexec/git-core'
install -m 644 git-mergetool--lib git-sh-i18n git-sh-setup '/home/ek/mygit/libexec/git-core'
install git git-receive-pack git-shell git-upload-archive git-upload-pack '/home/ek/mygit/bin'
install git-cvsserver '/home/ek/mygit/bin'
make -C templates DESTDIR='' install
make[1]: Entering directory '/home/ek/src/git/templates'
install -d -m 755 '/home/ek/mygit/share/git-core/templates'
(cd blt && tar cf - .) | \
(cd '/home/ek/mygit/share/git-core/templates' && umask 022 && tar xof -)
make[1]: Leaving directory '/home/ek/src/git/templates'
install -d -m 755 '/home/ek/mygit/libexec/git-core/mergetools'
install -m 644 mergetools/* '/home/ek/mygit/libexec/git-core/mergetools'
install -d -m 755 '/home/ek/mygit/share/locale'
(cd po/build/locale && tar cf - .) | \
(cd '/home/ek/mygit/share/locale' && umask 022 && tar xof -)
install -d -m 755 '/home/ek/mygit/share/perl5'
(cd perl/build/lib && tar cf - .) | \
(cd '/home/ek/mygit/share/perl5' && umask 022 && tar xof -)
make -C gitweb install
make[1]: Entering directory '/home/ek/src/git/gitweb'
make[2]: Entering directory '/home/ek/src/git'
make[2]: 'GIT-VERSION-FILE' is up to date.
make[2]: Leaving directory '/home/ek/src/git'
GEN gitweb.cgi
GEN static/gitweb.js
install -d -m 755 '/home/ek/mygit/share/gitweb'
install -m 755 gitweb.cgi '/home/ek/mygit/share/gitweb'
install -d -m 755 '/home/ek/mygit/share/gitweb/static'
install -m 644 static/gitweb.js static/gitweb.css static/git-logo.png static/git-favicon.png '/home/ek/mygit/share/gitweb/static'
make[1]: Leaving directory '/home/ek/src/git/gitweb'
make -C gitk-git install
make[1]: Entering directory '/home/ek/src/git/gitk-git'
install -d -m 755 '/home/ek/mygit/bin'
install -m 755 gitk-wish '/home/ek/mygit/bin'/gitk
install -d -m 755 '/home/ek/mygit/share/gitk/lib/msgs'
install -m 644 po/bg.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/ca.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/de.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/es.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/fr.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/hu.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/it.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/ja.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/pt_br.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/pt_pt.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/ru.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/sv.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/vi.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/zh_cn.msg '/home/ek/mygit/share/gitk/lib/msgs' && true
make[1]: Leaving directory '/home/ek/src/git/gitk-git'
make -C git-gui gitexecdir='/home/ek/mygit/libexec/git-core' install
make[1]: Entering directory '/home/ek/src/git/git-gui'
DEST /home/ek/mygit/libexec/git-core
INSTALL 755 git-gui
INSTALL 755 git-gui--askpass
LINK git-citool -> git-gui
DEST /home/ek/mygit/share/git-gui/lib
INSTALL 644 tclIndex
INSTALL 644 about.tcl
INSTALL 644 blame.tcl
INSTALL 644 branch_checkout.tcl
INSTALL 644 branch_create.tcl
INSTALL 644 branch_delete.tcl
INSTALL 644 branch_rename.tcl
INSTALL 644 branch.tcl
INSTALL 644 browser.tcl
INSTALL 644 checkout_op.tcl
INSTALL 644 choose_font.tcl
INSTALL 644 choose_repository.tcl
INSTALL 644 choose_rev.tcl
INSTALL 644 chord.tcl
INSTALL 644 class.tcl
INSTALL 644 commit.tcl
INSTALL 644 console.tcl
INSTALL 644 database.tcl
INSTALL 644 date.tcl
INSTALL 644 diff.tcl
INSTALL 644 encoding.tcl
INSTALL 644 error.tcl
INSTALL 644 index.tcl
INSTALL 644 line.tcl
INSTALL 644 logo.tcl
INSTALL 644 merge.tcl
INSTALL 644 mergetool.tcl
INSTALL 644 option.tcl
INSTALL 644 remote_add.tcl
INSTALL 644 remote_branch_delete.tcl
INSTALL 644 remote.tcl
INSTALL 644 search.tcl
INSTALL 644 shortcut.tcl
INSTALL 644 spellcheck.tcl
INSTALL 644 sshkey.tcl
INSTALL 644 status_bar.tcl
INSTALL 644 themed.tcl
INSTALL 644 tools_dlg.tcl
INSTALL 644 tools.tcl
INSTALL 644 transport.tcl
INSTALL 644 win32.tcl
INSTALL 644 git-gui.ico
INSTALL 644 win32_shortcut.js
DEST /home/ek/mygit/share/git-gui/lib/msgs
INSTALL 644 bg.msg
INSTALL 644 de.msg
INSTALL 644 el.msg
INSTALL 644 fr.msg
INSTALL 644 hu.msg
INSTALL 644 it.msg
INSTALL 644 ja.msg
INSTALL 644 nb.msg
INSTALL 644 pt_br.msg
INSTALL 644 pt_pt.msg
INSTALL 644 ru.msg
INSTALL 644 sv.msg
INSTALL 644 vi.msg
INSTALL 644 zh_cn.msg
make[1]: Leaving directory '/home/ek/src/git/git-gui'
bindir=$(cd '/home/ek/mygit/bin' && pwd) && \
execdir=$(cd '/home/ek/mygit/libexec/git-core' && pwd) && \
destdir_from_execdir_SQ=$(echo 'libexec/git-core' | sed -e 's|[^/][^/]*|..|g') && \
{ test "$bindir/" = "$execdir/" || \
for p in git git-shell git-cvsserver; do \
rm -f "$execdir/$p" && \
test -n "" && \
ln -s "$destdir_from_execdir_SQ/bin/$p" "$execdir/$p" || \
{ test -z "" && \
ln "$bindir/$p" "$execdir/$p" 2>/dev/null || \
cp "$bindir/$p" "$execdir/$p" || exit; } \
done; \
} && \
for p in git-receive-pack git-upload-archive git-upload-pack; do \
rm -f "$bindir/$p" && \
test -n "" && \
ln -s "git" "$bindir/$p" || \
{ test -z "" && \
ln "$bindir/git" "$bindir/$p" 2>/dev/null || \
ln -s "git" "$bindir/$p" 2>/dev/null || \
cp "$bindir/git" "$bindir/$p" || exit; }; \
done && \
for p in git-add git-am git-annotate git-apply git-archive git-bisect--helper git-blame git-branch git-bugreport git-bundle git-cat-file git-check-attr git-check-ignore git-check-mailmap git-check-ref-format git-checkout--worker git-checkout-index git-checkout git-clean git-clone git-column git-commit-graph git-commit-tree git-commit git-config git-count-objects git-credential-cache--daemon git-credential-cache git-credential-store git-credential git-describe git-diff-files git-diff-index git-diff-tree git-diff git-difftool git-env--helper git-fast-export git-fast-import git-fetch-pack git-fetch git-fmt-merge-msg git-for-each-ref git-for-each-repo git-fsck git-gc git-get-tar-commit-id git-grep git-hash-object git-help git-hook git-index-pack git-init-db git-interpret-trailers git-log git-ls-files git-ls-remote git-ls-tree git-mailinfo git-mailsplit git-merge-base git-merge-file git-merge-index git-merge-ours git-merge-recursive git-merge-tree git-merge git-mktag git-mktree git-multi-pack-index git-mv git-name-rev git-notes git-pack-objects git-pack-redundant git-pack-refs git-patch-id git-prune-packed git-prune git-pull git-push git-range-diff git-read-tree git-rebase git-receive-pack git-reflog git-remote-ext git-remote-fd git-remote git-repack git-replace git-rerere git-reset git-rev-list git-rev-parse git-revert git-rm git-send-pack git-shortlog git-show-branch git-show-index git-show-ref git-sparse-checkout git-stash git-stripspace git-submodule--helper git-symbolic-ref git-tag git-unpack-file git-unpack-objects git-update-index git-update-ref git-update-server-info git-upload-archive git-upload-pack git-var git-verify-commit git-verify-pack git-verify-tag git-worktree git-write-tree git-cherry git-cherry-pick git-format-patch git-fsck-objects git-init git-maintenance git-merge-subtree git-restore git-show git-stage git-status git-switch git-whatchanged; do \
rm -f "$execdir/$p" && \
if test -z ""; \
then \
test -n "" && \
ln -s "$destdir_from_execdir_SQ/bin/git" "$execdir/$p" || \
{ test -z "" && \
ln "$execdir/git" "$execdir/$p" 2>/dev/null || \
ln -s "git" "$execdir/$p" 2>/dev/null || \
cp "$execdir/git" "$execdir/$p" || exit; }; \
fi \
done && \
remote_curl_aliases="git-remote-https git-remote-ftp git-remote-ftps" && \
for p in $remote_curl_aliases; do \
rm -f "$execdir/$p" && \
test -n "" && \
ln -s "git-remote-http" "$execdir/$p" || \
{ test -z "" && \
ln "$execdir/git-remote-http" "$execdir/$p" 2>/dev/null || \
ln -s "git-remote-http" "$execdir/$p" 2>/dev/null || \
cp "$execdir/git-remote-http" "$execdir/$p" || exit; } \
done
ek@apok:~/src/git ((cf0e875cd8...)|BISECTING)$ pushd ~/tmp
~/tmp ~/src/git
ek@apok:~/tmp$ PATH="$HOME/mygit/bin:$PATH" GIT_SSH_COMMAND='{ pid="$(ps -o ppid:1= -p "$$")"; ps -o pid:1=,cmd= -p "$pid"; awk -v RS=\\0 "/^GIT_CONFIG/ { print \" \" \$0 }" "/proc/$pid/environ"; } 1>&2; ssh' GIT_CONFIG_COUNT=1 GIT_CONFIG_KEY_0=foo.bar GIT_CONFIG_VALUE_0=baz git clone --recurse-submodules git@github.com:EliahKagan/has-nested-submodule.git
Cloning into 'has-nested-submodule'...
1074148 git clone --recurse-submodules git@github.com:EliahKagan/has-nested-submodule.git
GIT_CONFIG_COUNT=1
GIT_CONFIG_KEY_0=foo.bar
GIT_CONFIG_VALUE_0=baz
remote: Enumerating objects: 4, done.
remote: Counting objects: 100% (4/4), done.
remote: Compressing objects: 100% (4/4), done.
remote: Total 4 (delta 0), reused 4 (delta 0), pack-reused 0
Receiving objects: 100% (4/4), done.
Submodule 'has-submodule' (git@github.com:EliahKagan/has-submodule.git) registered for path 'has-submodule'
Cloning into '/home/ek/tmp/has-nested-submodule/has-submodule'...
1074189 /home/ek/mygit/libexec/git-core/git clone --no-checkout --progress --separate-git-dir /home/ek/tmp/has-nested-submodule/.git/modules/has-submodule --no-single-branch -- git@github.com:EliahKagan/has-submodule.git /home/ek/tmp/has-nested-submodule/has-submodule
GIT_CONFIG_COUNT=1
GIT_CONFIG_KEY_0=foo.bar
GIT_CONFIG_VALUE_0=baz
remote: Enumerating objects: 4, done.
remote: Counting objects: 100% (4/4), done.
remote: Compressing objects: 100% (4/4), done.
remote: Total 4 (delta 0), reused 4 (delta 0), pack-reused 0
Receiving objects: 100% (4/4), done.
Submodule path 'has-submodule': checked out '8de4a40d782ddfd338f2ada312714d60541c6f80'
Submodule 'trivial' (git@github.com:EliahKagan/trivial.git) registered for path 'has-submodule/trivial'
Cloning into '/home/ek/tmp/has-nested-submodule/has-submodule/trivial'...
1074208 /home/ek/mygit/libexec/git-core/git clone --no-checkout --progress --separate-git-dir /home/ek/tmp/has-nested-submodule/.git/modules/has-submodule/modules/trivial --no-single-branch -- git@github.com:EliahKagan/trivial.git /home/ek/tmp/has-nested-submodule/has-submodule/trivial
GIT_CONFIG_COUNT=1
GIT_CONFIG_KEY_0=foo.bar
GIT_CONFIG_VALUE_0=baz
remote: Enumerating objects: 3, done.
remote: Counting objects: 100% (3/3), done.
remote: Compressing objects: 100% (2/2), done.
remote: Total 3 (delta 0), reused 3 (delta 0), pack-reused 0
Receiving objects: 100% (3/3), done.
Submodule path 'has-submodule/trivial': checked out '656a18dc1e48e035a05a72011a62bca5f41fa07e'
ek@apok:~/tmp$ rm -rf has-nested-submodule/
ek@apok:~/tmp$ popd
~/src/git
ek@apok:~/src/git ((cf0e875cd8...)|BISECTING)$ rm -r ~/mygit
ek@apok:~/src/git ((cf0e875cd8...)|BISECTING)$ gix clean -xde
removing .depend/ (🗑️)
removing GIT-BUILD-OPTIONS (🗑️)
removing GIT-CFLAGS (🗑️)
removing GIT-LDFLAGS (🗑️)
removing GIT-PERL-DEFINES (🗑️)
removing GIT-PERL-HEADER (🗑️)
removing GIT-PREFIX (🗑️)
removing GIT-PYTHON-VARS (🗑️)
removing GIT-SCRIPT-DEFINES (🗑️)
removing GIT-USER-AGENT (🗑️)
removing GIT-VERSION-FILE (🗑️)
removing abspath.o (🗑️)
removing add-interactive.o (🗑️)
removing add-patch.o (🗑️)
removing advice.o (🗑️)
removing alias.o (🗑️)
removing alloc.o (🗑️)
removing apply.o (🗑️)
removing archive-tar.o (🗑️)
removing archive-zip.o (🗑️)
removing archive.o (🗑️)
removing attr.o (🗑️)
removing base85.o (🗑️)
removing bin-wrappers/ (🗑️)
removing bisect.o (🗑️)
removing blame.o (🗑️)
removing blob.o (🗑️)
removing bloom.o (🗑️)
removing branch.o (🗑️)
removing builtin/.depend/ (🗑️)
removing builtin/add.o (🗑️)
removing builtin/am.o (🗑️)
removing builtin/annotate.o (🗑️)
removing builtin/apply.o (🗑️)
removing builtin/archive.o (🗑️)
removing builtin/bisect--helper.o (🗑️)
removing builtin/blame.o (🗑️)
removing builtin/branch.o (🗑️)
removing builtin/bugreport.o (🗑️)
removing builtin/bundle.o (🗑️)
removing builtin/cat-file.o (🗑️)
removing builtin/check-attr.o (🗑️)
removing builtin/check-ignore.o (🗑️)
removing builtin/check-mailmap.o (🗑️)
removing builtin/check-ref-format.o (🗑️)
removing builtin/checkout--worker.o (🗑️)
removing builtin/checkout-index.o (🗑️)
removing builtin/checkout.o (🗑️)
removing builtin/clean.o (🗑️)
removing builtin/clone.o (🗑️)
removing builtin/column.o (🗑️)
removing builtin/commit-graph.o (🗑️)
removing builtin/commit-tree.o (🗑️)
removing builtin/commit.o (🗑️)
removing builtin/config.o (🗑️)
removing builtin/count-objects.o (🗑️)
removing builtin/credential-cache--daemon.o (🗑️)
removing builtin/credential-cache.o (🗑️)
removing builtin/credential-store.o (🗑️)
removing builtin/credential.o (🗑️)
removing builtin/describe.o (🗑️)
removing builtin/diff-files.o (🗑️)
removing builtin/diff-index.o (🗑️)
removing builtin/diff-tree.o (🗑️)
removing builtin/diff.o (🗑️)
removing builtin/difftool.o (🗑️)
removing builtin/env--helper.o (🗑️)
removing builtin/fast-export.o (🗑️)
removing builtin/fast-import.o (🗑️)
removing builtin/fetch-pack.o (🗑️)
removing builtin/fetch.o (🗑️)
removing builtin/fmt-merge-msg.o (🗑️)
removing builtin/for-each-ref.o (🗑️)
removing builtin/for-each-repo.o (🗑️)
removing builtin/fsck.o (🗑️)
removing builtin/gc.o (🗑️)
removing builtin/get-tar-commit-id.o (🗑️)
removing builtin/grep.o (🗑️)
removing builtin/hash-object.o (🗑️)
removing builtin/help.o (🗑️)
removing builtin/hook.o (🗑️)
removing builtin/index-pack.o (🗑️)
removing builtin/init-db.o (🗑️)
removing builtin/interpret-trailers.o (🗑️)
removing builtin/log.o (🗑️)
removing builtin/ls-files.o (🗑️)
removing builtin/ls-remote.o (🗑️)
removing builtin/ls-tree.o (🗑️)
removing builtin/mailinfo.o (🗑️)
removing builtin/mailsplit.o (🗑️)
removing builtin/merge-base.o (🗑️)
removing builtin/merge-file.o (🗑️)
removing builtin/merge-index.o (🗑️)
removing builtin/merge-ours.o (🗑️)
removing builtin/merge-recursive.o (🗑️)
removing builtin/merge-tree.o (🗑️)
removing builtin/merge.o (🗑️)
removing builtin/mktag.o (🗑️)
removing builtin/mktree.o (🗑️)
removing builtin/multi-pack-index.o (🗑️)
removing builtin/mv.o (🗑️)
removing builtin/name-rev.o (🗑️)
removing builtin/notes.o (🗑️)
removing builtin/pack-objects.o (🗑️)
removing builtin/pack-redundant.o (🗑️)
removing builtin/pack-refs.o (🗑️)
removing builtin/patch-id.o (🗑️)
removing builtin/prune-packed.o (🗑️)
removing builtin/prune.o (🗑️)
removing builtin/pull.o (🗑️)
removing builtin/push.o (🗑️)
removing builtin/range-diff.o (🗑️)
removing builtin/read-tree.o (🗑️)
removing builtin/rebase.o (🗑️)
removing builtin/receive-pack.o (🗑️)
removing builtin/reflog.o (🗑️)
removing builtin/remote-ext.o (🗑️)
removing builtin/remote-fd.o (🗑️)
removing builtin/remote.o (🗑️)
removing builtin/repack.o (🗑️)
removing builtin/replace.o (🗑️)
removing builtin/rerere.o (🗑️)
removing builtin/reset.o (🗑️)
removing builtin/rev-list.o (🗑️)
removing builtin/rev-parse.o (🗑️)
removing builtin/revert.o (🗑️)
removing builtin/rm.o (🗑️)
removing builtin/send-pack.o (🗑️)
removing builtin/shortlog.o (🗑️)
removing builtin/show-branch.o (🗑️)
removing builtin/show-index.o (🗑️)
removing builtin/show-ref.o (🗑️)
removing builtin/sparse-checkout.o (🗑️)
removing builtin/stash.o (🗑️)
removing builtin/stripspace.o (🗑️)
removing builtin/submodule--helper.o (🗑️)
removing builtin/symbolic-ref.o (🗑️)
removing builtin/tag.o (🗑️)
removing builtin/unpack-file.o (🗑️)
removing builtin/unpack-objects.o (🗑️)
removing builtin/update-index.o (🗑️)
removing builtin/update-ref.o (🗑️)
removing builtin/update-server-info.o (🗑️)
removing builtin/upload-archive.o (🗑️)
removing builtin/upload-pack.o (🗑️)
removing builtin/var.o (🗑️)
removing builtin/verify-commit.o (🗑️)
removing builtin/verify-pack.o (🗑️)
removing builtin/verify-tag.o (🗑️)
removing builtin/worktree.o (🗑️)
removing builtin/write-tree.o (🗑️)
removing bulk-checkin.o (🗑️)
removing bundle.o (🗑️)
removing cache-tree.o (🗑️)
removing cbtree.o (🗑️)
removing chdir-notify.o (🗑️)
removing checkout.o (🗑️)
removing chunk-format.o (🗑️)
removing color.o (🗑️)
removing column.o (🗑️)
removing combine-diff.o (🗑️)
removing command-list.h (🗑️)
removing commit-graph.o (🗑️)
removing commit-reach.o (🗑️)
removing commit.o (🗑️)
removing common-main.o (🗑️)
removing compat/.depend/ (🗑️)
removing compat/fopen.o (🗑️)
removing compat/linux/.depend/ (🗑️)
removing compat/linux/procinfo.o (🗑️)
removing compat/obstack.o (🗑️)
removing compat/qsort_s.o (🗑️)
removing compat/simple-ipc/.depend/ (🗑️)
removing compat/simple-ipc/ipc-shared.o (🗑️)
removing compat/simple-ipc/ipc-unix-socket.o (🗑️)
removing compat/strlcpy.o (🗑️)
removing compat/terminal.o (🗑️)
removing compat/zlib-uncompress2.o (🗑️)
removing config-list.h (🗑️)
removing config.o (🗑️)
removing connect.o (🗑️)
removing connected.o (🗑️)
removing contrib/scalar/.depend/ (🗑️)
removing convert.o (🗑️)
removing copy.o (🗑️)
removing credential.o (🗑️)
removing csum-file.o (🗑️)
removing ctype.o (🗑️)
removing daemon.o (🗑️)
removing date.o (🗑️)
removing decorate.o (🗑️)
removing delta-islands.o (🗑️)
removing diff-delta.o (🗑️)
removing diff-lib.o (🗑️)
removing diff-merges.o (🗑️)
removing diff-no-index.o (🗑️)
removing diff.o (🗑️)
removing diffcore-break.o (🗑️)
removing diffcore-delta.o (🗑️)
removing diffcore-order.o (🗑️)
removing diffcore-pickaxe.o (🗑️)
removing diffcore-rename.o (🗑️)
removing diffcore-rotate.o (🗑️)
removing dir-iterator.o (🗑️)
removing dir.o (🗑️)
removing editor.o (🗑️)
removing entry.o (🗑️)
removing environment.o (🗑️)
removing ewah/.depend/ (🗑️)
removing ewah/bitmap.o (🗑️)
removing ewah/ewah_bitmap.o (🗑️)
removing ewah/ewah_io.o (🗑️)
removing ewah/ewah_rlw.o (🗑️)
removing exec-cmd.o (🗑️)
removing fetch-negotiator.o (🗑️)
removing fetch-pack.o (🗑️)
removing fmt-merge-msg.o (🗑️)
removing fsck.o (🗑️)
removing fsmonitor.o (🗑️)
removing fuzz-commit-graph.o (🗑️)
removing fuzz-pack-headers.o (🗑️)
removing fuzz-pack-idx.o (🗑️)
removing gettext.o (🗑️)
removing git (🗑️)
removing git-add (🗑️)
removing git-add--interactive (🗑️)
removing git-am (🗑️)
removing git-annotate (🗑️)
removing git-apply (🗑️)
removing git-archimport (🗑️)
removing git-archive (🗑️)
removing git-bisect (🗑️)
removing git-bisect--helper (🗑️)
removing git-blame (🗑️)
removing git-branch (🗑️)
removing git-bugreport (🗑️)
removing git-bundle (🗑️)
removing git-cat-file (🗑️)
removing git-check-attr (🗑️)
removing git-check-ignore (🗑️)
removing git-check-mailmap (🗑️)
removing git-check-ref-format (🗑️)
removing git-checkout (🗑️)
removing git-checkout--worker (🗑️)
removing git-checkout-index (🗑️)
removing git-cherry (🗑️)
removing git-cherry-pick (🗑️)
removing git-clean (🗑️)
removing git-clone (🗑️)
removing git-column (🗑️)
removing git-commit (🗑️)
removing git-commit-graph (🗑️)
removing git-commit-tree (🗑️)
removing git-config (🗑️)
removing git-count-objects (🗑️)
removing git-credential (🗑️)
removing git-credential-cache (🗑️)
removing git-credential-cache--daemon (🗑️)
removing git-credential-store (🗑️)
removing git-cvsexportcommit (🗑️)
removing git-cvsimport (🗑️)
removing git-cvsserver (🗑️)
removing git-daemon (🗑️)
removing git-describe (🗑️)
removing git-diff (🗑️)
removing git-diff-files (🗑️)
removing git-diff-index (🗑️)
removing git-diff-tree (🗑️)
removing git-difftool (🗑️)
removing git-difftool--helper (🗑️)
removing git-env--helper (🗑️)
removing git-fast-export (🗑️)
removing git-fast-import (🗑️)
removing git-fetch (🗑️)
removing git-fetch-pack (🗑️)
removing git-filter-branch (🗑️)
removing git-fmt-merge-msg (🗑️)
removing git-for-each-ref (🗑️)
removing git-for-each-repo (🗑️)
removing git-format-patch (🗑️)
removing git-fsck (🗑️)
removing git-fsck-objects (🗑️)
removing git-gc (🗑️)
removing git-get-tar-commit-id (🗑️)
removing git-grep (🗑️)
removing git-gui/GIT-GUI-VARS (🗑️)
removing git-gui/GIT-VERSION-FILE (🗑️)
removing git-gui/git-gui (🗑️)
removing git-gui/lib/tclIndex (🗑️)
removing git-gui/po/bg.msg (🗑️)
removing git-gui/po/de.msg (🗑️)
removing git-gui/po/el.msg (🗑️)
removing git-gui/po/fr.msg (🗑️)
removing git-gui/po/hu.msg (🗑️)
removing git-gui/po/it.msg (🗑️)
removing git-gui/po/ja.msg (🗑️)
removing git-gui/po/nb.msg (🗑️)
removing git-gui/po/pt_br.msg (🗑️)
removing git-gui/po/pt_pt.msg (🗑️)
removing git-gui/po/ru.msg (🗑️)
removing git-gui/po/sv.msg (🗑️)
removing git-gui/po/vi.msg (🗑️)
removing git-gui/po/zh_cn.msg (🗑️)
removing git-hash-object (🗑️)
removing git-help (🗑️)
removing git-hook (🗑️)
removing git-http-backend (🗑️)
removing git-http-fetch (🗑️)
removing git-http-push (🗑️)
removing git-imap-send (🗑️)
removing git-index-pack (🗑️)
removing git-init (🗑️)
removing git-init-db (🗑️)
removing git-instaweb (🗑️)
removing git-interpret-trailers (🗑️)
removing git-log (🗑️)
removing git-ls-files (🗑️)
removing git-ls-remote (🗑️)
removing git-ls-tree (🗑️)
removing git-mailinfo (🗑️)
removing git-mailsplit (🗑️)
removing git-maintenance (🗑️)
removing git-merge (🗑️)
removing git-merge-base (🗑️)
removing git-merge-file (🗑️)
removing git-merge-index (🗑️)
removing git-merge-octopus (🗑️)
removing git-merge-one-file (🗑️)
removing git-merge-ours (🗑️)
removing git-merge-recursive (🗑️)
removing git-merge-resolve (🗑️)
removing git-merge-subtree (🗑️)
removing git-merge-tree (🗑️)
removing git-mergetool (🗑️)
removing git-mergetool--lib (🗑️)
removing git-mktag (🗑️)
removing git-mktree (🗑️)
removing git-multi-pack-index (🗑️)
removing git-mv (🗑️)
removing git-name-rev (🗑️)
removing git-notes (🗑️)
removing git-p4 (🗑️)
removing git-pack-objects (🗑️)
removing git-pack-redundant (🗑️)
removing git-pack-refs (🗑️)
removing git-patch-id (🗑️)
removing git-prune (🗑️)
removing git-prune-packed (🗑️)
removing git-pull (🗑️)
removing git-push (🗑️)
removing git-quiltimport (🗑️)
removing git-range-diff (🗑️)
removing git-read-tree (🗑️)
removing git-rebase (🗑️)
removing git-receive-pack (🗑️)
removing git-reflog (🗑️)
removing git-remote (🗑️)
removing git-remote-ext (🗑️)
removing git-remote-fd (🗑️)
removing git-remote-ftp (🗑️)
removing git-remote-ftps (🗑️)
removing git-remote-http (🗑️)
removing git-remote-https (🗑️)
removing git-repack (🗑️)
removing git-replace (🗑️)
removing git-request-pull (🗑️)
removing git-rerere (🗑️)
removing git-reset (🗑️)
removing git-restore (🗑️)
removing git-rev-list (🗑️)
removing git-rev-parse (🗑️)
removing git-revert (🗑️)
removing git-rm (🗑️)
removing git-send-email (🗑️)
removing git-send-pack (🗑️)
removing git-sh-i18n (🗑️)
removing git-sh-i18n--envsubst (🗑️)
removing git-sh-setup (🗑️)
removing git-shell (🗑️)
removing git-shortlog (🗑️)
removing git-show (🗑️)
removing git-show-branch (🗑️)
removing git-show-index (🗑️)
removing git-show-ref (🗑️)
removing git-sparse-checkout (🗑️)
removing git-stage (🗑️)
removing git-stash (🗑️)
removing git-status (🗑️)
removing git-stripspace (🗑️)
removing git-submodule (🗑️)
removing git-submodule--helper (🗑️)
removing git-svn (🗑️)
removing git-switch (🗑️)
removing git-symbolic-ref (🗑️)
removing git-tag (🗑️)
removing git-unpack-file (🗑️)
removing git-unpack-objects (🗑️)
removing git-update-index (🗑️)
removing git-update-ref (🗑️)
removing git-update-server-info (🗑️)
removing git-upload-archive (🗑️)
removing git-upload-pack (🗑️)
removing git-var (🗑️)
removing git-verify-commit (🗑️)
removing git-verify-pack (🗑️)
removing git-verify-tag (🗑️)
removing git-web--browse (🗑️)
removing git-whatchanged (🗑️)
removing git-worktree (🗑️)
removing git-write-tree (🗑️)
removing git.o (🗑️)
removing gitk-git/GIT-TCLTK-VARS (🗑️)
removing gitk-git/gitk-wish (🗑️)
removing gitk-git/po/bg.msg (🗑️)
removing gitk-git/po/ca.msg (🗑️)
removing gitk-git/po/de.msg (🗑️)
removing gitk-git/po/es.msg (🗑️)
removing gitk-git/po/fr.msg (🗑️)
removing gitk-git/po/hu.msg (🗑️)
removing gitk-git/po/it.msg (🗑️)
removing gitk-git/po/ja.msg (🗑️)
removing gitk-git/po/pt_br.msg (🗑️)
removing gitk-git/po/pt_pt.msg (🗑️)
removing gitk-git/po/ru.msg (🗑️)
removing gitk-git/po/sv.msg (🗑️)
removing gitk-git/po/vi.msg (🗑️)
removing gitk-git/po/zh_cn.msg (🗑️)
removing gitweb/GITWEB-BUILD-OPTIONS (🗑️)
removing gitweb/gitweb.cgi (🗑️)
removing gitweb/static/gitweb.js (🗑️)
removing gpg-interface.o (🗑️)
removing graph.o (🗑️)
removing grep.o (🗑️)
removing hash-lookup.o (🗑️)
removing hashmap.o (🗑️)
removing help.o (🗑️)
removing hex.o (🗑️)
removing hook-list.h (🗑️)
removing hook.o (🗑️)
removing http-backend.o (🗑️)
removing http-fetch.o (🗑️)
removing http-push.o (🗑️)
removing http-walker.o (🗑️)
removing http.o (🗑️)
removing ident.o (🗑️)
removing imap-send.o (🗑️)
removing json-writer.o (🗑️)
removing kwset.o (🗑️)
removing levenshtein.o (🗑️)
removing libgit.a (🗑️)
removing line-log.o (🗑️)
removing line-range.o (🗑️)
removing linear-assignment.o (🗑️)
removing list-objects-filter-options.o (🗑️)
removing list-objects-filter.o (🗑️)
removing list-objects.o (🗑️)
removing ll-merge.o (🗑️)
removing lockfile.o (🗑️)
removing log-tree.o (🗑️)
removing ls-refs.o (🗑️)
removing mailinfo.o (🗑️)
removing mailmap.o (🗑️)
removing match-trees.o (🗑️)
removing mem-pool.o (🗑️)
removing merge-blobs.o (🗑️)
removing merge-ort-wrappers.o (🗑️)
removing merge-ort.o (🗑️)
removing merge-recursive.o (🗑️)
removing merge.o (🗑️)
removing mergesort.o (🗑️)
removing midx.o (🗑️)
removing name-hash.o (🗑️)
removing negotiator/.depend/ (🗑️)
removing negotiator/default.o (🗑️)
removing negotiator/noop.o (🗑️)
removing negotiator/skipping.o (🗑️)
removing notes-cache.o (🗑️)
removing notes-merge.o (🗑️)
removing notes-utils.o (🗑️)
removing notes.o (🗑️)
removing object-file.o (🗑️)
removing object-name.o (🗑️)
removing object.o (🗑️)
removing oid-array.o (🗑️)
removing oidmap.o (🗑️)
removing oidset.o (🗑️)
removing oidtree.o (🗑️)
removing pack-bitmap-write.o (🗑️)
removing pack-bitmap.o (🗑️)
removing pack-check.o (🗑️)
removing pack-objects.o (🗑️)
removing pack-revindex.o (🗑️)
removing pack-write.o (🗑️)
removing packfile.o (🗑️)
removing pager.o (🗑️)
removing parallel-checkout.o (🗑️)
removing parse-options-cb.o (🗑️)
removing parse-options.o (🗑️)
removing patch-delta.o (🗑️)
removing patch-ids.o (🗑️)
removing path.o (🗑️)
removing pathspec.o (🗑️)
removing perl/build/ (🗑️)
removing pkt-line.o (🗑️)
removing po/build/ (🗑️)
removing preload-index.o (🗑️)
removing pretty.o (🗑️)
removing prio-queue.o (🗑️)
removing progress.o (🗑️)
removing promisor-remote.o (🗑️)
removing prompt.o (🗑️)
removing protocol-caps.o (🗑️)
removing protocol.o (🗑️)
removing prune-packed.o (🗑️)
removing quote.o (🗑️)
removing range-diff.o (🗑️)
removing reachable.o (🗑️)
removing read-cache.o (🗑️)
removing rebase-interactive.o (🗑️)
removing rebase.o (🗑️)
removing ref-filter.o (🗑️)
removing reflog-walk.o (🗑️)
removing reflog.o (🗑️)
removing refs.o (🗑️)
removing refs/.depend/ (🗑️)
removing refs/debug.o (🗑️)
removing refs/files-backend.o (🗑️)
removing refs/iterator.o (🗑️)
removing refs/packed-backend.o (🗑️)
removing refs/ref-cache.o (🗑️)
removing refspec.o (🗑️)
removing reftable/.depend/ (🗑️)
removing reftable/basics.o (🗑️)
removing reftable/basics_test.o (🗑️)
removing reftable/block.o (🗑️)
removing reftable/block_test.o (🗑️)
removing reftable/blocksource.o (🗑️)
removing reftable/dump.o (🗑️)
removing reftable/error.o (🗑️)
removing reftable/generic.o (🗑️)
removing reftable/iter.o (🗑️)
removing reftable/libreftable.a (🗑️)
removing reftable/libreftable_test.a (🗑️)
removing reftable/merged.o (🗑️)
removing reftable/merged_test.o (🗑️)
removing reftable/pq.o (🗑️)
removing reftable/pq_test.o (🗑️)
removing reftable/publicbasics.o (🗑️)
removing reftable/reader.o (🗑️)
removing reftable/readwrite_test.o (🗑️)
removing reftable/record.o (🗑️)
removing reftable/record_test.o (🗑️)
removing reftable/refname.o (🗑️)
removing reftable/refname_test.o (🗑️)
removing reftable/stack.o (🗑️)
removing reftable/stack_test.o (🗑️)
removing reftable/test_framework.o (🗑️)
removing reftable/tree.o (🗑️)
removing reftable/tree_test.o (🗑️)
removing reftable/writer.o (🗑️)
removing remote-curl.o (🗑️)
removing remote.o (🗑️)
removing replace-object.o (🗑️)
removing repo-settings.o (🗑️)
removing repository.o (🗑️)
removing rerere.o (🗑️)
removing reset.o (🗑️)
removing resolve-undo.o (🗑️)
removing revision.o (🗑️)
removing run-command.o (🗑️)
removing send-pack.o (🗑️)
removing sequencer.o (🗑️)
removing serve.o (🗑️)
removing server-info.o (🗑️)
removing setup.o (🗑️)
removing sh-i18n--envsubst.o (🗑️)
removing sha1dc/.depend/ (🗑️)
removing sha1dc/sha1.o (🗑️)
removing sha1dc/ubc_check.o (🗑️)
removing sha1dc_git.o (🗑️)
removing sha256/block/.depend/ (🗑️)
removing sha256/block/sha256.o (🗑️)
removing shallow.o (🗑️)
removing shell.o (🗑️)
removing sideband.o (🗑️)
removing sigchain.o (🗑️)
removing sparse-index.o (🗑️)
removing split-index.o (🗑️)
removing stable-qsort.o (🗑️)
removing strbuf.o (🗑️)
removing streaming.o (🗑️)
removing string-list.o (🗑️)
removing strmap.o (🗑️)
removing strvec.o (🗑️)
removing sub-process.o (🗑️)
removing submodule-config.o (🗑️)
removing submodule.o (🗑️)
removing symlinks.o (🗑️)
removing t/helper/.depend/ (🗑️)
removing t/helper/test-advise.o (🗑️)
removing t/helper/test-bitmap.o (🗑️)
removing t/helper/test-bloom.o (🗑️)
removing t/helper/test-chmtime.o (🗑️)
removing t/helper/test-config.o (🗑️)
removing t/helper/test-crontab.o (🗑️)
removing t/helper/test-csprng.o (🗑️)
removing t/helper/test-ctype.o (🗑️)
removing t/helper/test-date.o (🗑️)
removing t/helper/test-delta.o (🗑️)
removing t/helper/test-dir-iterator.o (🗑️)
removing t/helper/test-drop-caches.o (🗑️)
removing t/helper/test-dump-cache-tree.o (🗑️)
removing t/helper/test-dump-fsmonitor.o (🗑️)
removing t/helper/test-dump-split-index.o (🗑️)
removing t/helper/test-dump-untracked-cache.o (🗑️)
removing t/helper/test-example-decorate.o (🗑️)
removing t/helper/test-fake-ssh (🗑️)
removing t/helper/test-fake-ssh.o (🗑️)
removing t/helper/test-fast-rebase.o (🗑️)
removing t/helper/test-genrandom.o (🗑️)
removing t/helper/test-genzeros.o (🗑️)
removing t/helper/test-getcwd.o (🗑️)
removing t/helper/test-hash-speed.o (🗑️)
removing t/helper/test-hash.o (🗑️)
removing t/helper/test-hashmap.o (🗑️)
removing t/helper/test-index-version.o (🗑️)
removing t/helper/test-json-writer.o (🗑️)
removing t/helper/test-lazy-init-name-hash.o (🗑️)
removing t/helper/test-match-trees.o (🗑️)
removing t/helper/test-mergesort.o (🗑️)
removing t/helper/test-mktemp.o (🗑️)
removing t/helper/test-oid-array.o (🗑️)
removing t/helper/test-oidmap.o (🗑️)
removing t/helper/test-oidtree.o (🗑️)
removing t/helper/test-online-cpus.o (🗑️)
removing t/helper/test-parse-options.o (🗑️)
removing t/helper/test-parse-pathspec-file.o (🗑️)
removing t/helper/test-partial-clone.o (🗑️)
removing t/helper/test-path-utils.o (🗑️)
removing t/helper/test-pcre2-config.o (🗑️)
removing t/helper/test-pkt-line.o (🗑️)
removing t/helper/test-prio-queue.o (🗑️)
removing t/helper/test-proc-receive.o (🗑️)
removing t/helper/test-progress.o (🗑️)
removing t/helper/test-reach.o (🗑️)
removing t/helper/test-read-cache.o (🗑️)
removing t/helper/test-read-graph.o (🗑️)
removing t/helper/test-read-midx.o (🗑️)
removing t/helper/test-ref-store.o (🗑️)
removing t/helper/test-reftable.o (🗑️)
removing t/helper/test-regex.o (🗑️)
removing t/helper/test-repository.o (🗑️)
removing t/helper/test-revision-walking.o (🗑️)
removing t/helper/test-run-command.o (🗑️)
removing t/helper/test-scrap-cache-tree.o (🗑️)
removing t/helper/test-serve-v2.o (🗑️)
removing t/helper/test-sha1.o (🗑️)
removing t/helper/test-sha256.o (🗑️)
removing t/helper/test-sigchain.o (🗑️)
removing t/helper/test-simple-ipc.o (🗑️)
removing t/helper/test-strcmp-offset.o (🗑️)
removing t/helper/test-string-list.o (🗑️)
removing t/helper/test-submodule-config.o (🗑️)
removing t/helper/test-submodule-nested-repo-config.o (🗑️)
removing t/helper/test-subprocess.o (🗑️)
removing t/helper/test-tool (🗑️)
removing t/helper/test-tool.o (🗑️)
removing t/helper/test-trace2.o (🗑️)
removing t/helper/test-urlmatch-normalization.o (🗑️)
removing t/helper/test-userdiff.o (🗑️)
removing t/helper/test-wildmatch.o (🗑️)
removing t/helper/test-windows-named-pipe.o (🗑️)
removing t/helper/test-write-cache.o (🗑️)
removing t/helper/test-xml-encode.o (🗑️)
removing tag.o (🗑️)
removing tempfile.o (🗑️)
removing templates/blt/ (🗑️)
removing templates/boilerplates.made (🗑️)
removing thread-utils.o (🗑️)
removing tmp-objdir.o (🗑️)
removing trace.o (🗑️)
removing trace2.o (🗑️)
removing trace2/.depend/ (🗑️)
removing trace2/tr2_cfg.o (🗑️)
removing trace2/tr2_cmd_name.o (🗑️)
removing trace2/tr2_dst.o (🗑️)
removing trace2/tr2_sid.o (🗑️)
removing trace2/tr2_sysenv.o (🗑️)
removing trace2/tr2_tbuf.o (🗑️)
removing trace2/tr2_tgt_event.o (🗑️)
removing trace2/tr2_tgt_normal.o (🗑️)
removing trace2/tr2_tgt_perf.o (🗑️)
removing trace2/tr2_tls.o (🗑️)
removing trailer.o (🗑️)
removing transport-helper.o (🗑️)
removing transport.o (🗑️)
removing tree-diff.o (🗑️)
removing tree-walk.o (🗑️)
removing tree.o (🗑️)
removing unix-socket.o (🗑️)
removing unix-stream-server.o (🗑️)
removing unpack-trees.o (🗑️)
removing upload-pack.o (🗑️)
removing url.o (🗑️)
removing urlmatch.o (🗑️)
removing usage.o (🗑️)
removing userdiff.o (🗑️)
removing utf8.o (🗑️)
removing varint.o (🗑️)
removing version.o (🗑️)
removing versioncmp.o (🗑️)
removing walker.o (🗑️)
removing wildmatch.o (🗑️)
removing worktree.o (🗑️)
removing wrapper.o (🗑️)
removing write-or-die.o (🗑️)
removing ws.o (🗑️)
removing wt-status.o (🗑️)
removing xdiff-interface.o (🗑️)
removing xdiff/.depend/ (🗑️)
removing xdiff/lib.a (🗑️)
removing xdiff/xdiffi.o (🗑️)
removing xdiff/xemit.o (🗑️)
removing xdiff/xhistogram.o (🗑️)
removing xdiff/xmerge.o (🗑️)
removing xdiff/xpatience.o (🗑️)
removing xdiff/xprepare.o (🗑️)
removing xdiff/xutils.o (🗑️)
removing zlib.o (🗑️)
ek@apok:~/src/git ((cf0e875cd8...)|BISECTING)$ git bisect new
Bisecting: 4 revisions left to test after this (roughly 2 steps)
[49fd5b99a59621bf4428ea648b6656c126298212] builtin/submodule--helper.c: rename option struct to "opt"
ek@apok:~/src/git ((49fd5b99a5...)|BISECTING)$ make prefix="$HOME/mygit" -j5
GIT_VERSION = 2.35.1.517.g49fd5b99a5
* new build flags
CC fuzz-commit-graph.o
CC fuzz-pack-headers.o
CC fuzz-pack-idx.o
CC daemon.o
CC common-main.o
* new link flags
CC abspath.o
CC add-interactive.o
CC add-patch.o
CC advice.o
CC alias.o
CC alloc.o
CC apply.o
CC archive-tar.o
CC archive-zip.o
CC archive.o
* new prefix flags
CC base85.o
CC bisect.o
CC blame.o
CC blob.o
CC bloom.o
CC branch.o
CC bulk-checkin.o
CC bundle.o
CC cache-tree.o
CC cbtree.o
CC chdir-notify.o
CC checkout.o
CC chunk-format.o
CC color.o
CC column.o
CC combine-diff.o
CC commit-graph.o
CC commit-reach.o
CC commit.o
CC compat/obstack.o
CC compat/terminal.o
CC compat/zlib-uncompress2.o
CC config.o
CC connect.o
CC connected.o
CC convert.o
CC copy.o
CC credential.o
CC csum-file.o
CC ctype.o
CC date.o
CC decorate.o
CC delta-islands.o
CC diff-delta.o
CC diff-merges.o
CC diff-lib.o
CC diff-no-index.o
CC diff.o
CC diffcore-break.o
CC diffcore-delta.o
CC diffcore-order.o
CC diffcore-pickaxe.o
CC diffcore-rename.o
CC diffcore-rotate.o
CC dir-iterator.o
CC dir.o
CC editor.o
CC entry.o
CC environment.o
CC ewah/bitmap.o
CC ewah/ewah_bitmap.o
CC ewah/ewah_io.o
CC ewah/ewah_rlw.o
CC exec-cmd.o
CC fetch-negotiator.o
CC fetch-pack.o
CC fmt-merge-msg.o
CC fsck.o
CC fsmonitor.o
CC gettext.o
CC gpg-interface.o
CC graph.o
CC grep.o
CC hash-lookup.o
CC hashmap.o
GEN command-list.h
CC hex.o
CC hook.o
CC ident.o
CC json-writer.o
CC kwset.o
CC levenshtein.o
CC line-log.o
CC line-range.o
CC linear-assignment.o
CC list-objects-filter-options.o
CC list-objects-filter.o
CC list-objects.o
CC ll-merge.o
CC lockfile.o
CC log-tree.o
CC ls-refs.o
CC mailinfo.o
CC mailmap.o
CC match-trees.o
CC mem-pool.o
CC merge-blobs.o
CC merge-ort.o
CC merge-ort-wrappers.o
CC merge-recursive.o
CC merge.o
CC mergesort.o
CC midx.o
CC name-hash.o
CC negotiator/default.o
CC negotiator/noop.o
CC negotiator/skipping.o
CC notes-cache.o
CC notes-merge.o
CC notes-utils.o
CC notes.o
CC object-file.o
CC object-name.o
CC object.o
CC oid-array.o
CC oidmap.o
CC oidset.o
CC oidtree.o
CC pack-bitmap-write.o
CC pack-bitmap.o
CC pack-check.o
CC pack-objects.o
CC pack-revindex.o
CC pack-write.o
CC pager.o
CC packfile.o
CC parallel-checkout.o
CC parse-options-cb.o
CC parse-options.o
CC patch-delta.o
CC patch-ids.o
CC path.o
CC pathspec.o
CC pkt-line.o
CC preload-index.o
CC pretty.o
CC prio-queue.o
CC progress.o
CC promisor-remote.o
CC prompt.o
CC protocol.o
CC protocol-caps.o
CC prune-packed.o
CC quote.o
CC range-diff.o
CC reachable.o
CC read-cache.o
CC rebase-interactive.o
CC rebase.o
CC ref-filter.o
CC reflog-walk.o
CC refs.o
CC refs/debug.o
CC refs/files-backend.o
CC refs/iterator.o
CC refs/packed-backend.o
CC refs/ref-cache.o
CC refspec.o
CC remote.o
CC replace-object.o
CC repo-settings.o
CC repository.o
CC rerere.o
CC reset.o
CC resolve-undo.o
CC revision.o
CC run-command.o
CC send-pack.o
CC sequencer.o
CC serve.o
CC server-info.o
CC setup.o
CC shallow.o
CC sideband.o
CC sigchain.o
CC sparse-index.o
CC split-index.o
CC stable-qsort.o
CC strbuf.o
CC streaming.o
CC string-list.o
CC strmap.o
CC strvec.o
CC sub-process.o
CC submodule-config.o
CC submodule.o
CC symlinks.o
CC tag.o
CC tempfile.o
CC thread-utils.o
CC tmp-objdir.o
CC trace.o
CC trace2.o
CC trace2/tr2_cfg.o
CC trace2/tr2_cmd_name.o
CC trace2/tr2_dst.o
CC trace2/tr2_sid.o
CC trace2/tr2_sysenv.o
CC trace2/tr2_tbuf.o
CC trace2/tr2_tgt_event.o
CC trace2/tr2_tgt_normal.o
CC trace2/tr2_tgt_perf.o
CC trace2/tr2_tls.o
CC trailer.o
CC transport-helper.o
CC transport.o
CC tree-diff.o
CC tree-walk.o
CC tree.o
CC unpack-trees.o
CC upload-pack.o
CC url.o
CC urlmatch.o
CC usage.o
CC userdiff.o
CC utf8.o
CC varint.o
CC versioncmp.o
CC walker.o
CC wildmatch.o
CC worktree.o
CC wrapper.o
CC write-or-die.o
CC ws.o
CC wt-status.o
CC xdiff-interface.o
CC zlib.o
CC unix-socket.o
CC unix-stream-server.o
CC compat/simple-ipc/ipc-shared.o
CC compat/simple-ipc/ipc-unix-socket.o
CC sha1dc_git.o
CC sha1dc/sha1.o
CC sha1dc/ubc_check.o
CC sha256/block/sha256.o
CC compat/linux/procinfo.o
CC compat/fopen.o
CC compat/strlcpy.o
CC compat/qsort_s.o
CC xdiff/xdiffi.o
CC xdiff/xemit.o
CC xdiff/xhistogram.o
CC xdiff/xmerge.o
CC xdiff/xpatience.o
CC xdiff/xprepare.o
CC xdiff/xutils.o
CC reftable/basics.o
CC reftable/error.o
CC reftable/block.o
CC reftable/blocksource.o
CC reftable/iter.o
CC reftable/publicbasics.o
CC reftable/merged.o
CC reftable/pq.o
CC reftable/reader.o
CC reftable/record.o
CC reftable/refname.o
CC reftable/generic.o
CC reftable/stack.o
CC reftable/tree.o
CC reftable/writer.o
CC http-backend.o
CC imap-send.o
CC http.o
CC sh-i18n--envsubst.o
CC shell.o
CC http-walker.o
CC http-fetch.o
CC http-push.o
CC remote-curl.o
* new script parameters
* new perl-specific parameters
* new Python interpreter location
GEN git-instaweb
CC git.o
CC builtin/add.o
CC builtin/am.o
CC builtin/annotate.o
CC builtin/apply.o
CC builtin/archive.o
CC builtin/bisect--helper.o
CC builtin/blame.o
CC builtin/branch.o
GEN hook-list.h
CC builtin/bundle.o
CC builtin/cat-file.o
CC builtin/check-attr.o
CC builtin/check-ignore.o
CC builtin/check-mailmap.o
CC builtin/check-ref-format.o
CC builtin/checkout--worker.o
CC builtin/checkout-index.o
CC builtin/checkout.o
CC builtin/clean.o
CC builtin/clone.o
CC builtin/column.o
CC builtin/commit-graph.o
CC builtin/commit-tree.o
CC builtin/commit.o
CC builtin/config.o
CC builtin/count-objects.o
CC builtin/credential-cache--daemon.o
CC builtin/credential-cache.o
CC builtin/credential-store.o
CC builtin/credential.o
CC builtin/describe.o
CC builtin/diff-files.o
CC builtin/diff-index.o
CC builtin/diff-tree.o
CC builtin/diff.o
CC builtin/difftool.o
CC builtin/env--helper.o
CC builtin/fast-export.o
CC builtin/fast-import.o
CC builtin/fetch-pack.o
CC builtin/fetch.o
CC builtin/fmt-merge-msg.o
CC builtin/for-each-ref.o
CC builtin/for-each-repo.o
CC builtin/fsck.o
CC builtin/gc.o
CC builtin/get-tar-commit-id.o
CC builtin/grep.o
CC builtin/hash-object.o
GEN config-list.h
CC builtin/hook.o
CC builtin/index-pack.o
CC builtin/init-db.o
CC builtin/interpret-trailers.o
CC builtin/log.o
CC builtin/ls-files.o
CC builtin/ls-remote.o
CC builtin/ls-tree.o
CC builtin/mailinfo.o
CC builtin/mailsplit.o
CC builtin/merge-base.o
CC builtin/merge-file.o
CC builtin/merge-index.o
CC builtin/merge-ours.o
CC builtin/merge-recursive.o
CC builtin/merge-tree.o
CC builtin/merge.o
CC builtin/mktag.o
CC builtin/mktree.o
CC builtin/multi-pack-index.o
CC builtin/mv.o
CC builtin/name-rev.o
CC builtin/notes.o
CC builtin/pack-objects.o
CC builtin/pack-redundant.o
CC builtin/pack-refs.o
CC builtin/patch-id.o
CC builtin/prune-packed.o
CC builtin/prune.o
CC builtin/pull.o
CC builtin/push.o
CC builtin/range-diff.o
CC builtin/read-tree.o
CC builtin/rebase.o
CC builtin/receive-pack.o
CC builtin/reflog.o
CC builtin/remote-ext.o
CC builtin/remote-fd.o
CC builtin/remote.o
CC builtin/repack.o
CC builtin/replace.o
CC builtin/rerere.o
CC builtin/reset.o
CC builtin/rev-list.o
CC builtin/rev-parse.o
CC builtin/revert.o
CC builtin/rm.o
CC builtin/send-pack.o
CC builtin/shortlog.o
CC builtin/show-branch.o
CC builtin/show-index.o
CC builtin/show-ref.o
CC builtin/sparse-checkout.o
CC builtin/stash.o
CC builtin/stripspace.o
CC builtin/submodule--helper.o
CC builtin/symbolic-ref.o
CC builtin/tag.o
CC builtin/unpack-file.o
CC builtin/unpack-objects.o
CC builtin/update-index.o
CC builtin/update-ref.o
CC builtin/update-server-info.o
CC builtin/upload-archive.o
CC builtin/upload-pack.o
CC builtin/var.o
CC builtin/verify-commit.o
CC builtin/verify-pack.o
CC builtin/verify-tag.o
CC builtin/worktree.o
CC builtin/write-tree.o
GEN git-mergetool--lib
GEN git-sh-i18n
GEN git-sh-setup
CC attr.o
CC help.o
CC version.o
AR xdiff/lib.a
AR reftable/libreftable.a
GEN git-bisect
GEN git-difftool--helper
GEN git-filter-branch
GEN git-merge-octopus
GEN git-merge-one-file
GEN git-merge-resolve
GEN git-mergetool
GEN git-quiltimport
GEN git-request-pull
GEN git-submodule
GEN git-web--browse
GEN GIT-PERL-HEADER
GEN git-p4
CC builtin/bugreport.o
CC builtin/help.o
GEN git-add--interactive
GEN git-archimport
GEN git-cvsexportcommit
GEN git-cvsimport
GEN git-cvsserver
GEN git-send-email
GEN git-svn
AR libgit.a
LINK git-daemon
LINK git-http-backend
LINK git-imap-send
LINK git-sh-i18n--envsubst
LINK git-shell
LINK git-http-fetch
LINK git-http-push
LINK git-remote-http
LINK git
LN/CP git-remote-https
LN/CP git-remote-ftp
LN/CP git-remote-ftps
BUILTIN git-add
BUILTIN git-am
BUILTIN git-annotate
BUILTIN git-apply
BUILTIN git-archive
BUILTIN git-bisect--helper
BUILTIN git-blame
BUILTIN git-branch
BUILTIN git-bugreport
BUILTIN git-bundle
BUILTIN git-cat-file
BUILTIN git-check-attr
BUILTIN git-check-ignore
BUILTIN git-check-ref-format
BUILTIN git-check-mailmap
BUILTIN git-checkout--worker
BUILTIN git-checkout-index
BUILTIN git-clean
BUILTIN git-checkout
BUILTIN git-clone
BUILTIN git-commit-graph
BUILTIN git-column
BUILTIN git-commit-tree
BUILTIN git-commit
BUILTIN git-config
BUILTIN git-count-objects
BUILTIN git-credential-cache--daemon
BUILTIN git-credential-store
BUILTIN git-credential-cache
BUILTIN git-credential
BUILTIN git-describe
BUILTIN git-diff-files
BUILTIN git-diff-index
BUILTIN git-diff-tree
BUILTIN git-diff
BUILTIN git-difftool
BUILTIN git-env--helper
BUILTIN git-fast-export
BUILTIN git-fast-import
BUILTIN git-fetch-pack
BUILTIN git-fetch
BUILTIN git-fmt-merge-msg
BUILTIN git-for-each-ref
BUILTIN git-for-each-repo
BUILTIN git-fsck
BUILTIN git-gc
BUILTIN git-get-tar-commit-id
BUILTIN git-grep
BUILTIN git-hash-object
BUILTIN git-help
BUILTIN git-hook
BUILTIN git-index-pack
BUILTIN git-init-db
BUILTIN git-interpret-trailers
BUILTIN git-log
BUILTIN git-ls-files
BUILTIN git-ls-remote
BUILTIN git-ls-tree
BUILTIN git-mailinfo
BUILTIN git-merge-base
BUILTIN git-mailsplit
BUILTIN git-merge-file
BUILTIN git-merge-index
BUILTIN git-merge-ours
BUILTIN git-merge-recursive
BUILTIN git-merge-tree
BUILTIN git-merge
BUILTIN git-mktag
BUILTIN git-mktree
BUILTIN git-mv
BUILTIN git-multi-pack-index
BUILTIN git-name-rev
BUILTIN git-notes
BUILTIN git-pack-redundant
BUILTIN git-pack-objects
BUILTIN git-pack-refs
BUILTIN git-patch-id
BUILTIN git-prune-packed
BUILTIN git-prune
BUILTIN git-pull
BUILTIN git-push
BUILTIN git-range-diff
BUILTIN git-read-tree
BUILTIN git-rebase
BUILTIN git-receive-pack
BUILTIN git-reflog
BUILTIN git-remote-ext
BUILTIN git-remote-fd
BUILTIN git-remote
BUILTIN git-repack
BUILTIN git-replace
BUILTIN git-reset
BUILTIN git-rerere
BUILTIN git-rev-list
BUILTIN git-rev-parse
BUILTIN git-revert
BUILTIN git-rm
BUILTIN git-send-pack
BUILTIN git-shortlog
BUILTIN git-show-branch
BUILTIN git-show-index
BUILTIN git-show-ref
BUILTIN git-sparse-checkout
BUILTIN git-stash
BUILTIN git-stripspace
BUILTIN git-symbolic-ref
BUILTIN git-submodule--helper
BUILTIN git-tag
BUILTIN git-unpack-file
BUILTIN git-unpack-objects
BUILTIN git-update-index
BUILTIN git-update-ref
BUILTIN git-update-server-info
BUILTIN git-upload-archive
BUILTIN git-upload-pack
BUILTIN git-var
BUILTIN git-verify-commit
BUILTIN git-verify-pack
BUILTIN git-verify-tag
BUILTIN git-worktree
BUILTIN git-write-tree
BUILTIN git-cherry
BUILTIN git-cherry-pick
BUILTIN git-format-patch
BUILTIN git-fsck-objects
BUILTIN git-init
BUILTIN git-maintenance
BUILTIN git-merge-subtree
BUILTIN git-restore
BUILTIN git-show
BUILTIN git-stage
BUILTIN git-status
BUILTIN git-whatchanged
BUILTIN git-switch
SUBDIR git-gui
GITGUI_VERSION = 0.21.0.99.gdf4f9
* new locations or Tcl/Tk interpreter
MSGFMT po/bg.msg MSGFMT po/de.msg MSGFMT po/el.msg MSGFMT po/fr.msg MSGFMT po/hu.msg 381 translated, 4 fuzzy, 6 untranslated.
565 translated.
MSGFMT po/it.msg MSGFMT po/ja.msg 514 translated.
MSGFMT po/nb.msg 579 translated.
520 translated.
MSGFMT po/pt_br.msg MSGFMT po/pt_pt.msg 519 translated, 1 untranslated.
546 translated, 1 untranslated.
MSGFMT po/ru.msg MSGFMT po/sv.msg 474 translated, 39 untranslated.
MSGFMT po/vi.msg 547 translated.
520 translated.
550 translated.
MSGFMT po/zh_cn.msg 579 translated.
543 translated.
INDEX lib/
GEN git-gui
366 translated, 7 fuzzy, 17 untranslated.
SUBDIR gitk-git
Generating catalog po/bg.msg
msgfmt --statistics --tcl po/bg.po -l bg -d po/
Generating catalog po/es.msg
* new Tcl/Tk interpreter location
Generating catalog po/ca.msg
msgfmt --statistics --tcl po/es.po -l es -d po/
Generating catalog po/de.msg
msgfmt --statistics --tcl po/ca.po -l ca -d po/
msgfmt --statistics --tcl po/de.po -l de -d po/
184 translated messages, 46 fuzzy translations, 77 untranslated messages.
317 translated messages.
307 translated messages.
Generating catalog po/fr.msg
Generating catalog po/hu.msg
msgfmt --statistics --tcl po/fr.po -l fr -d po/
Generating catalog po/it.msg
msgfmt --statistics --tcl po/hu.po -l hu -d po/
307 translated messagesmsgfmt --statistics --tcl po/it.po -l it -d po/
.
Generating catalog po/ja.msg
msgfmt --statistics --tcl po/ja.po -l ja -d po/
Generating catalog po/pt_br.msg
msgfmt --statistics --tcl po/pt_br.po -l pt_br -d po/
311 translated messages.
274 translated messages, 17 fuzzy translations, 16 untranslated messages.
277 translated messages, 18 fuzzy translations, 12 untranslated messages.
Generating catalog po/pt_pt.msg
311 translated messages.
msgfmt --statistics --tcl po/pt_pt.po -l pt_pt -d po/
Generating catalog po/ru.msg
msgfmt --statistics --tcl po/ru.po -l ru -d po/
Generating catalog po/sv.msg
msgfmt --statistics --tcl po/sv.po -l sv -d po/
Generating catalog po/vi.msg
279 translated messages, 16 fuzzy translations, 12 untranslated messages.
msgfmt --statistics --tcl po/vi.po -l vi -d po/
311 translated messages.
Generating catalog po/zh_cn.msg
311 translated messages.
317 translated messagesmsgfmt --statistics --tcl po/zh_cn.po -l zh_cn -d po/
.
GEN gitk-wish
307 translated messages.
317 translated messages.
SUBDIR templates
MKDIR -p po/build/locale/bg/LC_MESSAGES
MSGFMT po/build/locale/bg/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/ca/LC_MESSAGES
MKDIR -p po/build/locale/de/LC_MESSAGES
MSGFMT po/build/locale/ca/LC_MESSAGES/git.mo
MSGFMT po/build/locale/de/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/el/LC_MESSAGES
MSGFMT po/build/locale/el/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/es/LC_MESSAGES
MSGFMT po/build/locale/es/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/fr/LC_MESSAGES
MSGFMT po/build/locale/fr/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/id/LC_MESSAGES
MSGFMT po/build/locale/id/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/is/LC_MESSAGES
MSGFMT po/build/locale/is/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/it/LC_MESSAGES
MSGFMT po/build/locale/it/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/ko/LC_MESSAGES
MSGFMT po/build/locale/ko/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/pl/LC_MESSAGES
MSGFMT po/build/locale/pl/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/pt_PT/LC_MESSAGES
MSGFMT po/build/locale/pt_PT/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/ru/LC_MESSAGES
MSGFMT po/build/locale/ru/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/sv/LC_MESSAGES
MSGFMT po/build/locale/sv/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/tr/LC_MESSAGES
MSGFMT po/build/locale/tr/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/vi/LC_MESSAGES
MSGFMT po/build/locale/vi/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/zh_CN/LC_MESSAGES
MSGFMT po/build/locale/zh_CN/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/zh_TW/LC_MESSAGES
MSGFMT po/build/locale/zh_TW/LC_MESSAGES/git.mo
MKDIR -p perl/build/lib
GEN perl/build/lib/Git.pm
MKDIR -p perl/build/lib/Git
GEN perl/build/lib/Git/IndexInfo.pm
GEN perl/build/lib/Git/LoadCPAN.pm
GEN perl/build/lib/Git/Packet.pm
GEN perl/build/lib/Git/I18N.pm
GEN perl/build/lib/Git/SVN.pm
MKDIR -p perl/build/lib/Git/LoadCPAN
GEN perl/build/lib/Git/LoadCPAN/Error.pm
MKDIR -p perl/build/lib/Git/SVN
GEN perl/build/lib/Git/SVN/Fetcher.pm
GEN perl/build/lib/Git/SVN/GlobSpec.pm
GEN perl/build/lib/Git/SVN/Log.pm
GEN perl/build/lib/Git/SVN/Editor.pm
GEN perl/build/lib/Git/SVN/Prompt.pm
GEN perl/build/lib/Git/SVN/Ra.pm
GEN perl/build/lib/Git/SVN/Migration.pm
GEN perl/build/lib/Git/SVN/Utils.pm
MKDIR -p perl/build/lib/Git/LoadCPAN/Mail
GEN perl/build/lib/Git/LoadCPAN/Mail/Address.pm
MKDIR -p perl/build/lib/Git/SVN/Memoize
GEN perl/build/lib/Git/SVN/Memoize/YAML.pm
MKDIR -p perl/build/lib/FromCPAN
GEN perl/build/lib/FromCPAN/Error.pm
MKDIR -p perl/build/lib/FromCPAN/Mail
GEN perl/build/lib/FromCPAN/Mail/Address.pm
CC t/helper/test-fake-ssh.o
CC reftable/basics_test.o
CC reftable/block_test.o
CC reftable/dump.o
CC reftable/merged_test.o
CC reftable/pq_test.o
CC reftable/record_test.o
CC reftable/readwrite_test.o
CC reftable/refname_test.o
CC reftable/stack_test.o
CC reftable/test_framework.o
CC reftable/tree_test.o
CC t/helper/test-tool.o
CC t/helper/test-advise.o
CC t/helper/test-bitmap.o
CC t/helper/test-bloom.o
CC t/helper/test-chmtime.o
CC t/helper/test-config.o
CC t/helper/test-crontab.o
CC t/helper/test-csprng.o
CC t/helper/test-ctype.o
CC t/helper/test-date.o
CC t/helper/test-delta.o
CC t/helper/test-dir-iterator.o
CC t/helper/test-drop-caches.o
CC t/helper/test-dump-cache-tree.o
CC t/helper/test-dump-fsmonitor.o
CC t/helper/test-dump-split-index.o
CC t/helper/test-dump-untracked-cache.o
CC t/helper/test-example-decorate.o
CC t/helper/test-fast-rebase.o
CC t/helper/test-genrandom.o
CC t/helper/test-genzeros.o
CC t/helper/test-getcwd.o
CC t/helper/test-hash-speed.o
CC t/helper/test-hash.o
CC t/helper/test-hashmap.o
CC t/helper/test-index-version.o
CC t/helper/test-json-writer.o
CC t/helper/test-lazy-init-name-hash.o
CC t/helper/test-match-trees.o
CC t/helper/test-mergesort.o
CC t/helper/test-mktemp.o
CC t/helper/test-oid-array.o
CC t/helper/test-oidmap.o
CC t/helper/test-oidtree.o
CC t/helper/test-online-cpus.o
CC t/helper/test-parse-options.o
CC t/helper/test-parse-pathspec-file.o
CC t/helper/test-partial-clone.o
CC t/helper/test-path-utils.o
CC t/helper/test-pcre2-config.o
CC t/helper/test-pkt-line.o
CC t/helper/test-prio-queue.o
CC t/helper/test-proc-receive.o
CC t/helper/test-progress.o
CC t/helper/test-reach.o
CC t/helper/test-read-cache.o
CC t/helper/test-read-graph.o
CC t/helper/test-read-midx.o
CC t/helper/test-ref-store.o
CC t/helper/test-reftable.o
CC t/helper/test-regex.o
CC t/helper/test-repository.o
CC t/helper/test-revision-walking.o
CC t/helper/test-run-command.o
CC t/helper/test-scrap-cache-tree.o
CC t/helper/test-serve-v2.o
CC t/helper/test-sha1.o
CC t/helper/test-sha256.o
CC t/helper/test-sigchain.o
CC t/helper/test-simple-ipc.o
CC t/helper/test-strcmp-offset.o
CC t/helper/test-string-list.o
CC t/helper/test-submodule-config.o
CC t/helper/test-submodule-nested-repo-config.o
CC t/helper/test-subprocess.o
CC t/helper/test-trace2.o
CC t/helper/test-urlmatch-normalization.o
CC t/helper/test-userdiff.o
CC t/helper/test-wildmatch.o
CC t/helper/test-windows-named-pipe.o
CC t/helper/test-write-cache.o
CC t/helper/test-xml-encode.o
MKDIR -p bin-wrappers
GEN bin-wrappers/git
GEN bin-wrappers/git-receive-pack
GEN bin-wrappers/git-shell
GEN bin-wrappers/git-upload-archive
GEN bin-wrappers/git-upload-pack
GEN bin-wrappers/git-cvsserver
GEN bin-wrappers/test-fake-ssh
GEN bin-wrappers/test-tool
AR reftable/libreftable_test.a
LINK t/helper/test-fake-ssh
LINK t/helper/test-tool
ek@apok:~/src/git ((49fd5b99a5...)|BISECTING)$ make prefix="$HOME/mygit" install
SUBDIR git-gui
SUBDIR gitk-git
SUBDIR templates
install -d -m 755 '/home/ek/mygit/bin'
install -d -m 755 '/home/ek/mygit/libexec/git-core'
install git-daemon git-http-backend git-imap-send git-sh-i18n--envsubst git-shell git-http-fetch git-http-push git-remote-http git-remote-https git-remote-ftp git-remote-ftps '/home/ek/mygit/libexec/git-core'
install git-bisect git-difftool--helper git-filter-branch git-merge-octopus git-merge-one-file git-merge-resolve git-mergetool git-quiltimport git-request-pull git-submodule git-web--browse git-add--interactive git-archimport git-cvsexportcommit git-cvsimport git-cvsserver git-send-email git-svn git-p4 git-instaweb '/home/ek/mygit/libexec/git-core'
install -m 644 git-mergetool--lib git-sh-i18n git-sh-setup '/home/ek/mygit/libexec/git-core'
install git git-receive-pack git-shell git-upload-archive git-upload-pack '/home/ek/mygit/bin'
install git-cvsserver '/home/ek/mygit/bin'
make -C templates DESTDIR='' install
make[1]: Entering directory '/home/ek/src/git/templates'
install -d -m 755 '/home/ek/mygit/share/git-core/templates'
(cd blt && tar cf - .) | \
(cd '/home/ek/mygit/share/git-core/templates' && umask 022 && tar xof -)
make[1]: Leaving directory '/home/ek/src/git/templates'
install -d -m 755 '/home/ek/mygit/libexec/git-core/mergetools'
install -m 644 mergetools/* '/home/ek/mygit/libexec/git-core/mergetools'
install -d -m 755 '/home/ek/mygit/share/locale'
(cd po/build/locale && tar cf - .) | \
(cd '/home/ek/mygit/share/locale' && umask 022 && tar xof -)
install -d -m 755 '/home/ek/mygit/share/perl5'
(cd perl/build/lib && tar cf - .) | \
(cd '/home/ek/mygit/share/perl5' && umask 022 && tar xof -)
make -C gitweb install
make[1]: Entering directory '/home/ek/src/git/gitweb'
make[2]: Entering directory '/home/ek/src/git'
make[2]: 'GIT-VERSION-FILE' is up to date.
make[2]: Leaving directory '/home/ek/src/git'
GEN gitweb.cgi
GEN static/gitweb.js
install -d -m 755 '/home/ek/mygit/share/gitweb'
install -m 755 gitweb.cgi '/home/ek/mygit/share/gitweb'
install -d -m 755 '/home/ek/mygit/share/gitweb/static'
install -m 644 static/gitweb.js static/gitweb.css static/git-logo.png static/git-favicon.png '/home/ek/mygit/share/gitweb/static'
make[1]: Leaving directory '/home/ek/src/git/gitweb'
make -C gitk-git install
make[1]: Entering directory '/home/ek/src/git/gitk-git'
install -d -m 755 '/home/ek/mygit/bin'
install -m 755 gitk-wish '/home/ek/mygit/bin'/gitk
install -d -m 755 '/home/ek/mygit/share/gitk/lib/msgs'
install -m 644 po/bg.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/ca.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/de.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/es.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/fr.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/hu.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/it.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/ja.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/pt_br.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/pt_pt.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/ru.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/sv.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/vi.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/zh_cn.msg '/home/ek/mygit/share/gitk/lib/msgs' && true
make[1]: Leaving directory '/home/ek/src/git/gitk-git'
make -C git-gui gitexecdir='/home/ek/mygit/libexec/git-core' install
make[1]: Entering directory '/home/ek/src/git/git-gui'
DEST /home/ek/mygit/libexec/git-core
INSTALL 755 git-gui
INSTALL 755 git-gui--askpass
LINK git-citool -> git-gui
DEST /home/ek/mygit/share/git-gui/lib
INSTALL 644 tclIndex
INSTALL 644 about.tcl
INSTALL 644 blame.tcl
INSTALL 644 branch_checkout.tcl
INSTALL 644 branch_create.tcl
INSTALL 644 branch_delete.tcl
INSTALL 644 branch_rename.tcl
INSTALL 644 branch.tcl
INSTALL 644 browser.tcl
INSTALL 644 checkout_op.tcl
INSTALL 644 choose_font.tcl
INSTALL 644 choose_repository.tcl
INSTALL 644 choose_rev.tcl
INSTALL 644 chord.tcl
INSTALL 644 class.tcl
INSTALL 644 commit.tcl
INSTALL 644 console.tcl
INSTALL 644 database.tcl
INSTALL 644 date.tcl
INSTALL 644 diff.tcl
INSTALL 644 encoding.tcl
INSTALL 644 error.tcl
INSTALL 644 index.tcl
INSTALL 644 line.tcl
INSTALL 644 logo.tcl
INSTALL 644 merge.tcl
INSTALL 644 mergetool.tcl
INSTALL 644 option.tcl
INSTALL 644 remote_add.tcl
INSTALL 644 remote_branch_delete.tcl
INSTALL 644 remote.tcl
INSTALL 644 search.tcl
INSTALL 644 shortcut.tcl
INSTALL 644 spellcheck.tcl
INSTALL 644 sshkey.tcl
INSTALL 644 status_bar.tcl
INSTALL 644 themed.tcl
INSTALL 644 tools_dlg.tcl
INSTALL 644 tools.tcl
INSTALL 644 transport.tcl
INSTALL 644 win32.tcl
INSTALL 644 git-gui.ico
INSTALL 644 win32_shortcut.js
DEST /home/ek/mygit/share/git-gui/lib/msgs
INSTALL 644 bg.msg
INSTALL 644 de.msg
INSTALL 644 el.msg
INSTALL 644 fr.msg
INSTALL 644 hu.msg
INSTALL 644 it.msg
INSTALL 644 ja.msg
INSTALL 644 nb.msg
INSTALL 644 pt_br.msg
INSTALL 644 pt_pt.msg
INSTALL 644 ru.msg
INSTALL 644 sv.msg
INSTALL 644 vi.msg
INSTALL 644 zh_cn.msg
make[1]: Leaving directory '/home/ek/src/git/git-gui'
bindir=$(cd '/home/ek/mygit/bin' && pwd) && \
execdir=$(cd '/home/ek/mygit/libexec/git-core' && pwd) && \
destdir_from_execdir_SQ=$(echo 'libexec/git-core' | sed -e 's|[^/][^/]*|..|g') && \
{ test "$bindir/" = "$execdir/" || \
for p in git git-shell git-cvsserver; do \
rm -f "$execdir/$p" && \
test -n "" && \
ln -s "$destdir_from_execdir_SQ/bin/$p" "$execdir/$p" || \
{ test -z "" && \
ln "$bindir/$p" "$execdir/$p" 2>/dev/null || \
cp "$bindir/$p" "$execdir/$p" || exit; } \
done; \
} && \
for p in git-receive-pack git-upload-archive git-upload-pack; do \
rm -f "$bindir/$p" && \
test -n "" && \
ln -s "git" "$bindir/$p" || \
{ test -z "" && \
ln "$bindir/git" "$bindir/$p" 2>/dev/null || \
ln -s "git" "$bindir/$p" 2>/dev/null || \
cp "$bindir/git" "$bindir/$p" || exit; }; \
done && \
for p in git-add git-am git-annotate git-apply git-archive git-bisect--helper git-blame git-branch git-bugreport git-bundle git-cat-file git-check-attr git-check-ignore git-check-mailmap git-check-ref-format git-checkout--worker git-checkout-index git-checkout git-clean git-clone git-column git-commit-graph git-commit-tree git-commit git-config git-count-objects git-credential-cache--daemon git-credential-cache git-credential-store git-credential git-describe git-diff-files git-diff-index git-diff-tree git-diff git-difftool git-env--helper git-fast-export git-fast-import git-fetch-pack git-fetch git-fmt-merge-msg git-for-each-ref git-for-each-repo git-fsck git-gc git-get-tar-commit-id git-grep git-hash-object git-help git-hook git-index-pack git-init-db git-interpret-trailers git-log git-ls-files git-ls-remote git-ls-tree git-mailinfo git-mailsplit git-merge-base git-merge-file git-merge-index git-merge-ours git-merge-recursive git-merge-tree git-merge git-mktag git-mktree git-multi-pack-index git-mv git-name-rev git-notes git-pack-objects git-pack-redundant git-pack-refs git-patch-id git-prune-packed git-prune git-pull git-push git-range-diff git-read-tree git-rebase git-receive-pack git-reflog git-remote-ext git-remote-fd git-remote git-repack git-replace git-rerere git-reset git-rev-list git-rev-parse git-revert git-rm git-send-pack git-shortlog git-show-branch git-show-index git-show-ref git-sparse-checkout git-stash git-stripspace git-submodule--helper git-symbolic-ref git-tag git-unpack-file git-unpack-objects git-update-index git-update-ref git-update-server-info git-upload-archive git-upload-pack git-var git-verify-commit git-verify-pack git-verify-tag git-worktree git-write-tree git-cherry git-cherry-pick git-format-patch git-fsck-objects git-init git-maintenance git-merge-subtree git-restore git-show git-stage git-status git-switch git-whatchanged; do \
rm -f "$execdir/$p" && \
if test -z ""; \
then \
test -n "" && \
ln -s "$destdir_from_execdir_SQ/bin/git" "$execdir/$p" || \
{ test -z "" && \
ln "$execdir/git" "$execdir/$p" 2>/dev/null || \
ln -s "git" "$execdir/$p" 2>/dev/null || \
cp "$execdir/git" "$execdir/$p" || exit; }; \
fi \
done && \
remote_curl_aliases="git-remote-https git-remote-ftp git-remote-ftps" && \
for p in $remote_curl_aliases; do \
rm -f "$execdir/$p" && \
test -n "" && \
ln -s "git-remote-http" "$execdir/$p" || \
{ test -z "" && \
ln "$execdir/git-remote-http" "$execdir/$p" 2>/dev/null || \
ln -s "git-remote-http" "$execdir/$p" 2>/dev/null || \
cp "$execdir/git-remote-http" "$execdir/$p" || exit; } \
done
ek@apok:~/src/git ((49fd5b99a5...)|BISECTING)$ pushd ~/tmp
~/tmp ~/src/git
ek@apok:~/tmp$ PATH="$HOME/mygit/bin:$PATH" GIT_SSH_COMMAND='{ pid="$(ps -o ppid:1= -p "$$")"; ps -o pid:1=,cmd= -p "$pid"; awk -v RS=\\0 "/^GIT_CONFIG/ { print \" \" \$0 }" "/proc/$pid/environ"; } 1>&2; ssh' GIT_CONFIG_COUNT=1 GIT_CONFIG_KEY_0=foo.bar GIT_CONFIG_VALUE_0=baz git clone --recurse-submodules git@github.com:EliahKagan/has-nested-submodule.git
Cloning into 'has-nested-submodule'...
1078290 git clone --recurse-submodules git@github.com:EliahKagan/has-nested-submodule.git
GIT_CONFIG_COUNT=1
GIT_CONFIG_KEY_0=foo.bar
GIT_CONFIG_VALUE_0=baz
remote: Enumerating objects: 4, done.
remote: Counting objects: 100% (4/4), done.
remote: Compressing objects: 100% (4/4), done.
remote: Total 4 (delta 0), reused 4 (delta 0), pack-reused 0
Receiving objects: 100% (4/4), done.
Submodule 'has-submodule' (git@github.com:EliahKagan/has-submodule.git) registered for path 'has-submodule'
Cloning into '/home/ek/tmp/has-nested-submodule/has-submodule'...
1078333 /home/ek/mygit/libexec/git-core/git clone --no-checkout --progress --separate-git-dir /home/ek/tmp/has-nested-submodule/.git/modules/has-submodule --no-single-branch -- git@github.com:EliahKagan/has-submodule.git /home/ek/tmp/has-nested-submodule/has-submodule
GIT_CONFIG_COUNT=1
GIT_CONFIG_KEY_0=foo.bar
GIT_CONFIG_VALUE_0=baz
remote: Enumerating objects: 4, done.
remote: Counting objects: 100% (4/4), done.
remote: Compressing objects: 100% (4/4), done.
remote: Total 4 (delta 0), reused 4 (delta 0), pack-reused 0
Receiving objects: 100% (4/4), done.
Submodule path 'has-submodule': checked out '8de4a40d782ddfd338f2ada312714d60541c6f80'
Submodule 'trivial' (git@github.com:EliahKagan/trivial.git) registered for path 'has-submodule/trivial'
Cloning into '/home/ek/tmp/has-nested-submodule/has-submodule/trivial'...
1078359 /home/ek/mygit/libexec/git-core/git clone --no-checkout --progress --separate-git-dir /home/ek/tmp/has-nested-submodule/.git/modules/has-submodule/modules/trivial --no-single-branch -- git@github.com:EliahKagan/trivial.git /home/ek/tmp/has-nested-submodule/has-submodule/trivial
GIT_CONFIG_KEY_0=foo.bar
GIT_CONFIG_PARAMETERS=
GIT_CONFIG_VALUE_0=baz
remote: Enumerating objects: 3, done.
remote: Counting objects: 100% (3/3), done.
remote: Compressing objects: 100% (2/2), done.
remote: Total 3 (delta 0), reused 3 (delta 0), pack-reused 0
Receiving objects: 100% (3/3), done.
Submodule path 'has-submodule/trivial': checked out '656a18dc1e48e035a05a72011a62bca5f41fa07e'
ek@apok:~/tmp$ rm -rf has-nested-submodule/
ek@apok:~/tmp$ popd
~/src/git
ek@apok:~/src/git ((49fd5b99a5...)|BISECTING)$ rm -r ~/mygit
ek@apok:~/src/git ((49fd5b99a5...)|BISECTING)$ gix clean -xde
removing .depend/ (🗑️)
removing GIT-BUILD-OPTIONS (🗑️)
removing GIT-CFLAGS (🗑️)
removing GIT-LDFLAGS (🗑️)
removing GIT-PERL-DEFINES (🗑️)
removing GIT-PERL-HEADER (🗑️)
removing GIT-PREFIX (🗑️)
removing GIT-PYTHON-VARS (🗑️)
removing GIT-SCRIPT-DEFINES (🗑️)
removing GIT-USER-AGENT (🗑️)
removing GIT-VERSION-FILE (🗑️)
removing abspath.o (🗑️)
removing add-interactive.o (🗑️)
removing add-patch.o (🗑️)
removing advice.o (🗑️)
removing alias.o (🗑️)
removing alloc.o (🗑️)
removing apply.o (🗑️)
removing archive-tar.o (🗑️)
removing archive-zip.o (🗑️)
removing archive.o (🗑️)
removing attr.o (🗑️)
removing base85.o (🗑️)
removing bin-wrappers/ (🗑️)
removing bisect.o (🗑️)
removing blame.o (🗑️)
removing blob.o (🗑️)
removing bloom.o (🗑️)
removing branch.o (🗑️)
removing builtin/.depend/ (🗑️)
removing builtin/add.o (🗑️)
removing builtin/am.o (🗑️)
removing builtin/annotate.o (🗑️)
removing builtin/apply.o (🗑️)
removing builtin/archive.o (🗑️)
removing builtin/bisect--helper.o (🗑️)
removing builtin/blame.o (🗑️)
removing builtin/branch.o (🗑️)
removing builtin/bugreport.o (🗑️)
removing builtin/bundle.o (🗑️)
removing builtin/cat-file.o (🗑️)
removing builtin/check-attr.o (🗑️)
removing builtin/check-ignore.o (🗑️)
removing builtin/check-mailmap.o (🗑️)
removing builtin/check-ref-format.o (🗑️)
removing builtin/checkout--worker.o (🗑️)
removing builtin/checkout-index.o (🗑️)
removing builtin/checkout.o (🗑️)
removing builtin/clean.o (🗑️)
removing builtin/clone.o (🗑️)
removing builtin/column.o (🗑️)
removing builtin/commit-graph.o (🗑️)
removing builtin/commit-tree.o (🗑️)
removing builtin/commit.o (🗑️)
removing builtin/config.o (🗑️)
removing builtin/count-objects.o (🗑️)
removing builtin/credential-cache--daemon.o (🗑️)
removing builtin/credential-cache.o (🗑️)
removing builtin/credential-store.o (🗑️)
removing builtin/credential.o (🗑️)
removing builtin/describe.o (🗑️)
removing builtin/diff-files.o (🗑️)
removing builtin/diff-index.o (🗑️)
removing builtin/diff-tree.o (🗑️)
removing builtin/diff.o (🗑️)
removing builtin/difftool.o (🗑️)
removing builtin/env--helper.o (🗑️)
removing builtin/fast-export.o (🗑️)
removing builtin/fast-import.o (🗑️)
removing builtin/fetch-pack.o (🗑️)
removing builtin/fetch.o (🗑️)
removing builtin/fmt-merge-msg.o (🗑️)
removing builtin/for-each-ref.o (🗑️)
removing builtin/for-each-repo.o (🗑️)
removing builtin/fsck.o (🗑️)
removing builtin/gc.o (🗑️)
removing builtin/get-tar-commit-id.o (🗑️)
removing builtin/grep.o (🗑️)
removing builtin/hash-object.o (🗑️)
removing builtin/help.o (🗑️)
removing builtin/hook.o (🗑️)
removing builtin/index-pack.o (🗑️)
removing builtin/init-db.o (🗑️)
removing builtin/interpret-trailers.o (🗑️)
removing builtin/log.o (🗑️)
removing builtin/ls-files.o (🗑️)
removing builtin/ls-remote.o (🗑️)
removing builtin/ls-tree.o (🗑️)
removing builtin/mailinfo.o (🗑️)
removing builtin/mailsplit.o (🗑️)
removing builtin/merge-base.o (🗑️)
removing builtin/merge-file.o (🗑️)
removing builtin/merge-index.o (🗑️)
removing builtin/merge-ours.o (🗑️)
removing builtin/merge-recursive.o (🗑️)
removing builtin/merge-tree.o (🗑️)
removing builtin/merge.o (🗑️)
removing builtin/mktag.o (🗑️)
removing builtin/mktree.o (🗑️)
removing builtin/multi-pack-index.o (🗑️)
removing builtin/mv.o (🗑️)
removing builtin/name-rev.o (🗑️)
removing builtin/notes.o (🗑️)
removing builtin/pack-objects.o (🗑️)
removing builtin/pack-redundant.o (🗑️)
removing builtin/pack-refs.o (🗑️)
removing builtin/patch-id.o (🗑️)
removing builtin/prune-packed.o (🗑️)
removing builtin/prune.o (🗑️)
removing builtin/pull.o (🗑️)
removing builtin/push.o (🗑️)
removing builtin/range-diff.o (🗑️)
removing builtin/read-tree.o (🗑️)
removing builtin/rebase.o (🗑️)
removing builtin/receive-pack.o (🗑️)
removing builtin/reflog.o (🗑️)
removing builtin/remote-ext.o (🗑️)
removing builtin/remote-fd.o (🗑️)
removing builtin/remote.o (🗑️)
removing builtin/repack.o (🗑️)
removing builtin/replace.o (🗑️)
removing builtin/rerere.o (🗑️)
removing builtin/reset.o (🗑️)
removing builtin/rev-list.o (🗑️)
removing builtin/rev-parse.o (🗑️)
removing builtin/revert.o (🗑️)
removing builtin/rm.o (🗑️)
removing builtin/send-pack.o (🗑️)
removing builtin/shortlog.o (🗑️)
removing builtin/show-branch.o (🗑️)
removing builtin/show-index.o (🗑️)
removing builtin/show-ref.o (🗑️)
removing builtin/sparse-checkout.o (🗑️)
removing builtin/stash.o (🗑️)
removing builtin/stripspace.o (🗑️)
removing builtin/submodule--helper.o (🗑️)
removing builtin/symbolic-ref.o (🗑️)
removing builtin/tag.o (🗑️)
removing builtin/unpack-file.o (🗑️)
removing builtin/unpack-objects.o (🗑️)
removing builtin/update-index.o (🗑️)
removing builtin/update-ref.o (🗑️)
removing builtin/update-server-info.o (🗑️)
removing builtin/upload-archive.o (🗑️)
removing builtin/upload-pack.o (🗑️)
removing builtin/var.o (🗑️)
removing builtin/verify-commit.o (🗑️)
removing builtin/verify-pack.o (🗑️)
removing builtin/verify-tag.o (🗑️)
removing builtin/worktree.o (🗑️)
removing builtin/write-tree.o (🗑️)
removing bulk-checkin.o (🗑️)
removing bundle.o (🗑️)
removing cache-tree.o (🗑️)
removing cbtree.o (🗑️)
removing chdir-notify.o (🗑️)
removing checkout.o (🗑️)
removing chunk-format.o (🗑️)
removing color.o (🗑️)
removing column.o (🗑️)
removing combine-diff.o (🗑️)
removing command-list.h (🗑️)
removing commit-graph.o (🗑️)
removing commit-reach.o (🗑️)
removing commit.o (🗑️)
removing common-main.o (🗑️)
removing compat/.depend/ (🗑️)
removing compat/fopen.o (🗑️)
removing compat/linux/.depend/ (🗑️)
removing compat/linux/procinfo.o (🗑️)
removing compat/obstack.o (🗑️)
removing compat/qsort_s.o (🗑️)
removing compat/simple-ipc/.depend/ (🗑️)
removing compat/simple-ipc/ipc-shared.o (🗑️)
removing compat/simple-ipc/ipc-unix-socket.o (🗑️)
removing compat/strlcpy.o (🗑️)
removing compat/terminal.o (🗑️)
removing compat/zlib-uncompress2.o (🗑️)
removing config-list.h (🗑️)
removing config.o (🗑️)
removing connect.o (🗑️)
removing connected.o (🗑️)
removing contrib/scalar/.depend/ (🗑️)
removing convert.o (🗑️)
removing copy.o (🗑️)
removing credential.o (🗑️)
removing csum-file.o (🗑️)
removing ctype.o (🗑️)
removing daemon.o (🗑️)
removing date.o (🗑️)
removing decorate.o (🗑️)
removing delta-islands.o (🗑️)
removing diff-delta.o (🗑️)
removing diff-lib.o (🗑️)
removing diff-merges.o (🗑️)
removing diff-no-index.o (🗑️)
removing diff.o (🗑️)
removing diffcore-break.o (🗑️)
removing diffcore-delta.o (🗑️)
removing diffcore-order.o (🗑️)
removing diffcore-pickaxe.o (🗑️)
removing diffcore-rename.o (🗑️)
removing diffcore-rotate.o (🗑️)
removing dir-iterator.o (🗑️)
removing dir.o (🗑️)
removing editor.o (🗑️)
removing entry.o (🗑️)
removing environment.o (🗑️)
removing ewah/.depend/ (🗑️)
removing ewah/bitmap.o (🗑️)
removing ewah/ewah_bitmap.o (🗑️)
removing ewah/ewah_io.o (🗑️)
removing ewah/ewah_rlw.o (🗑️)
removing exec-cmd.o (🗑️)
removing fetch-negotiator.o (🗑️)
removing fetch-pack.o (🗑️)
removing fmt-merge-msg.o (🗑️)
removing fsck.o (🗑️)
removing fsmonitor.o (🗑️)
removing fuzz-commit-graph.o (🗑️)
removing fuzz-pack-headers.o (🗑️)
removing fuzz-pack-idx.o (🗑️)
removing gettext.o (🗑️)
removing git (🗑️)
removing git-add (🗑️)
removing git-add--interactive (🗑️)
removing git-am (🗑️)
removing git-annotate (🗑️)
removing git-apply (🗑️)
removing git-archimport (🗑️)
removing git-archive (🗑️)
removing git-bisect (🗑️)
removing git-bisect--helper (🗑️)
removing git-blame (🗑️)
removing git-branch (🗑️)
removing git-bugreport (🗑️)
removing git-bundle (🗑️)
removing git-cat-file (🗑️)
removing git-check-attr (🗑️)
removing git-check-ignore (🗑️)
removing git-check-mailmap (🗑️)
removing git-check-ref-format (🗑️)
removing git-checkout (🗑️)
removing git-checkout--worker (🗑️)
removing git-checkout-index (🗑️)
removing git-cherry (🗑️)
removing git-cherry-pick (🗑️)
removing git-clean (🗑️)
removing git-clone (🗑️)
removing git-column (🗑️)
removing git-commit (🗑️)
removing git-commit-graph (🗑️)
removing git-commit-tree (🗑️)
removing git-config (🗑️)
removing git-count-objects (🗑️)
removing git-credential (🗑️)
removing git-credential-cache (🗑️)
removing git-credential-cache--daemon (🗑️)
removing git-credential-store (🗑️)
removing git-cvsexportcommit (🗑️)
removing git-cvsimport (🗑️)
removing git-cvsserver (🗑️)
removing git-daemon (🗑️)
removing git-describe (🗑️)
removing git-diff (🗑️)
removing git-diff-files (🗑️)
removing git-diff-index (🗑️)
removing git-diff-tree (🗑️)
removing git-difftool (🗑️)
removing git-difftool--helper (🗑️)
removing git-env--helper (🗑️)
removing git-fast-export (🗑️)
removing git-fast-import (🗑️)
removing git-fetch (🗑️)
removing git-fetch-pack (🗑️)
removing git-filter-branch (🗑️)
removing git-fmt-merge-msg (🗑️)
removing git-for-each-ref (🗑️)
removing git-for-each-repo (🗑️)
removing git-format-patch (🗑️)
removing git-fsck (🗑️)
removing git-fsck-objects (🗑️)
removing git-gc (🗑️)
removing git-get-tar-commit-id (🗑️)
removing git-grep (🗑️)
removing git-gui/GIT-GUI-VARS (🗑️)
removing git-gui/GIT-VERSION-FILE (🗑️)
removing git-gui/git-gui (🗑️)
removing git-gui/lib/tclIndex (🗑️)
removing git-gui/po/bg.msg (🗑️)
removing git-gui/po/de.msg (🗑️)
removing git-gui/po/el.msg (🗑️)
removing git-gui/po/fr.msg (🗑️)
removing git-gui/po/hu.msg (🗑️)
removing git-gui/po/it.msg (🗑️)
removing git-gui/po/ja.msg (🗑️)
removing git-gui/po/nb.msg (🗑️)
removing git-gui/po/pt_br.msg (🗑️)
removing git-gui/po/pt_pt.msg (🗑️)
removing git-gui/po/ru.msg (🗑️)
removing git-gui/po/sv.msg (🗑️)
removing git-gui/po/vi.msg (🗑️)
removing git-gui/po/zh_cn.msg (🗑️)
removing git-hash-object (🗑️)
removing git-help (🗑️)
removing git-hook (🗑️)
removing git-http-backend (🗑️)
removing git-http-fetch (🗑️)
removing git-http-push (🗑️)
removing git-imap-send (🗑️)
removing git-index-pack (🗑️)
removing git-init (🗑️)
removing git-init-db (🗑️)
removing git-instaweb (🗑️)
removing git-interpret-trailers (🗑️)
removing git-log (🗑️)
removing git-ls-files (🗑️)
removing git-ls-remote (🗑️)
removing git-ls-tree (🗑️)
removing git-mailinfo (🗑️)
removing git-mailsplit (🗑️)
removing git-maintenance (🗑️)
removing git-merge (🗑️)
removing git-merge-base (🗑️)
removing git-merge-file (🗑️)
removing git-merge-index (🗑️)
removing git-merge-octopus (🗑️)
removing git-merge-one-file (🗑️)
removing git-merge-ours (🗑️)
removing git-merge-recursive (🗑️)
removing git-merge-resolve (🗑️)
removing git-merge-subtree (🗑️)
removing git-merge-tree (🗑️)
removing git-mergetool (🗑️)
removing git-mergetool--lib (🗑️)
removing git-mktag (🗑️)
removing git-mktree (🗑️)
removing git-multi-pack-index (🗑️)
removing git-mv (🗑️)
removing git-name-rev (🗑️)
removing git-notes (🗑️)
removing git-p4 (🗑️)
removing git-pack-objects (🗑️)
removing git-pack-redundant (🗑️)
removing git-pack-refs (🗑️)
removing git-patch-id (🗑️)
removing git-prune (🗑️)
removing git-prune-packed (🗑️)
removing git-pull (🗑️)
removing git-push (🗑️)
removing git-quiltimport (🗑️)
removing git-range-diff (🗑️)
removing git-read-tree (🗑️)
removing git-rebase (🗑️)
removing git-receive-pack (🗑️)
removing git-reflog (🗑️)
removing git-remote (🗑️)
removing git-remote-ext (🗑️)
removing git-remote-fd (🗑️)
removing git-remote-ftp (🗑️)
removing git-remote-ftps (🗑️)
removing git-remote-http (🗑️)
removing git-remote-https (🗑️)
removing git-repack (🗑️)
removing git-replace (🗑️)
removing git-request-pull (🗑️)
removing git-rerere (🗑️)
removing git-reset (🗑️)
removing git-restore (🗑️)
removing git-rev-list (🗑️)
removing git-rev-parse (🗑️)
removing git-revert (🗑️)
removing git-rm (🗑️)
removing git-send-email (🗑️)
removing git-send-pack (🗑️)
removing git-sh-i18n (🗑️)
removing git-sh-i18n--envsubst (🗑️)
removing git-sh-setup (🗑️)
removing git-shell (🗑️)
removing git-shortlog (🗑️)
removing git-show (🗑️)
removing git-show-branch (🗑️)
removing git-show-index (🗑️)
removing git-show-ref (🗑️)
removing git-sparse-checkout (🗑️)
removing git-stage (🗑️)
removing git-stash (🗑️)
removing git-status (🗑️)
removing git-stripspace (🗑️)
removing git-submodule (🗑️)
removing git-submodule--helper (🗑️)
removing git-svn (🗑️)
removing git-switch (🗑️)
removing git-symbolic-ref (🗑️)
removing git-tag (🗑️)
removing git-unpack-file (🗑️)
removing git-unpack-objects (🗑️)
removing git-update-index (🗑️)
removing git-update-ref (🗑️)
removing git-update-server-info (🗑️)
removing git-upload-archive (🗑️)
removing git-upload-pack (🗑️)
removing git-var (🗑️)
removing git-verify-commit (🗑️)
removing git-verify-pack (🗑️)
removing git-verify-tag (🗑️)
removing git-web--browse (🗑️)
removing git-whatchanged (🗑️)
removing git-worktree (🗑️)
removing git-write-tree (🗑️)
removing git.o (🗑️)
removing gitk-git/GIT-TCLTK-VARS (🗑️)
removing gitk-git/gitk-wish (🗑️)
removing gitk-git/po/bg.msg (🗑️)
removing gitk-git/po/ca.msg (🗑️)
removing gitk-git/po/de.msg (🗑️)
removing gitk-git/po/es.msg (🗑️)
removing gitk-git/po/fr.msg (🗑️)
removing gitk-git/po/hu.msg (🗑️)
removing gitk-git/po/it.msg (🗑️)
removing gitk-git/po/ja.msg (🗑️)
removing gitk-git/po/pt_br.msg (🗑️)
removing gitk-git/po/pt_pt.msg (🗑️)
removing gitk-git/po/ru.msg (🗑️)
removing gitk-git/po/sv.msg (🗑️)
removing gitk-git/po/vi.msg (🗑️)
removing gitk-git/po/zh_cn.msg (🗑️)
removing gitweb/GITWEB-BUILD-OPTIONS (🗑️)
removing gitweb/gitweb.cgi (🗑️)
removing gitweb/static/gitweb.js (🗑️)
removing gpg-interface.o (🗑️)
removing graph.o (🗑️)
removing grep.o (🗑️)
removing hash-lookup.o (🗑️)
removing hashmap.o (🗑️)
removing help.o (🗑️)
removing hex.o (🗑️)
removing hook-list.h (🗑️)
removing hook.o (🗑️)
removing http-backend.o (🗑️)
removing http-fetch.o (🗑️)
removing http-push.o (🗑️)
removing http-walker.o (🗑️)
removing http.o (🗑️)
removing ident.o (🗑️)
removing imap-send.o (🗑️)
removing json-writer.o (🗑️)
removing kwset.o (🗑️)
removing levenshtein.o (🗑️)
removing libgit.a (🗑️)
removing line-log.o (🗑️)
removing line-range.o (🗑️)
removing linear-assignment.o (🗑️)
removing list-objects-filter-options.o (🗑️)
removing list-objects-filter.o (🗑️)
removing list-objects.o (🗑️)
removing ll-merge.o (🗑️)
removing lockfile.o (🗑️)
removing log-tree.o (🗑️)
removing ls-refs.o (🗑️)
removing mailinfo.o (🗑️)
removing mailmap.o (🗑️)
removing match-trees.o (🗑️)
removing mem-pool.o (🗑️)
removing merge-blobs.o (🗑️)
removing merge-ort-wrappers.o (🗑️)
removing merge-ort.o (🗑️)
removing merge-recursive.o (🗑️)
removing merge.o (🗑️)
removing mergesort.o (🗑️)
removing midx.o (🗑️)
removing name-hash.o (🗑️)
removing negotiator/.depend/ (🗑️)
removing negotiator/default.o (🗑️)
removing negotiator/noop.o (🗑️)
removing negotiator/skipping.o (🗑️)
removing notes-cache.o (🗑️)
removing notes-merge.o (🗑️)
removing notes-utils.o (🗑️)
removing notes.o (🗑️)
removing object-file.o (🗑️)
removing object-name.o (🗑️)
removing object.o (🗑️)
removing oid-array.o (🗑️)
removing oidmap.o (🗑️)
removing oidset.o (🗑️)
removing oidtree.o (🗑️)
removing pack-bitmap-write.o (🗑️)
removing pack-bitmap.o (🗑️)
removing pack-check.o (🗑️)
removing pack-objects.o (🗑️)
removing pack-revindex.o (🗑️)
removing pack-write.o (🗑️)
removing packfile.o (🗑️)
removing pager.o (🗑️)
removing parallel-checkout.o (🗑️)
removing parse-options-cb.o (🗑️)
removing parse-options.o (🗑️)
removing patch-delta.o (🗑️)
removing patch-ids.o (🗑️)
removing path.o (🗑️)
removing pathspec.o (🗑️)
removing perl/build/ (🗑️)
removing pkt-line.o (🗑️)
removing po/build/ (🗑️)
removing preload-index.o (🗑️)
removing pretty.o (🗑️)
removing prio-queue.o (🗑️)
removing progress.o (🗑️)
removing promisor-remote.o (🗑️)
removing prompt.o (🗑️)
removing protocol-caps.o (🗑️)
removing protocol.o (🗑️)
removing prune-packed.o (🗑️)
removing quote.o (🗑️)
removing range-diff.o (🗑️)
removing reachable.o (🗑️)
removing read-cache.o (🗑️)
removing rebase-interactive.o (🗑️)
removing rebase.o (🗑️)
removing ref-filter.o (🗑️)
removing reflog-walk.o (🗑️)
removing refs.o (🗑️)
removing refs/.depend/ (🗑️)
removing refs/debug.o (🗑️)
removing refs/files-backend.o (🗑️)
removing refs/iterator.o (🗑️)
removing refs/packed-backend.o (🗑️)
removing refs/ref-cache.o (🗑️)
removing refspec.o (🗑️)
removing reftable/.depend/ (🗑️)
removing reftable/basics.o (🗑️)
removing reftable/basics_test.o (🗑️)
removing reftable/block.o (🗑️)
removing reftable/block_test.o (🗑️)
removing reftable/blocksource.o (🗑️)
removing reftable/dump.o (🗑️)
removing reftable/error.o (🗑️)
removing reftable/generic.o (🗑️)
removing reftable/iter.o (🗑️)
removing reftable/libreftable.a (🗑️)
removing reftable/libreftable_test.a (🗑️)
removing reftable/merged.o (🗑️)
removing reftable/merged_test.o (🗑️)
removing reftable/pq.o (🗑️)
removing reftable/pq_test.o (🗑️)
removing reftable/publicbasics.o (🗑️)
removing reftable/reader.o (🗑️)
removing reftable/readwrite_test.o (🗑️)
removing reftable/record.o (🗑️)
removing reftable/record_test.o (🗑️)
removing reftable/refname.o (🗑️)
removing reftable/refname_test.o (🗑️)
removing reftable/stack.o (🗑️)
removing reftable/stack_test.o (🗑️)
removing reftable/test_framework.o (🗑️)
removing reftable/tree.o (🗑️)
removing reftable/tree_test.o (🗑️)
removing reftable/writer.o (🗑️)
removing remote-curl.o (🗑️)
removing remote.o (🗑️)
removing replace-object.o (🗑️)
removing repo-settings.o (🗑️)
removing repository.o (🗑️)
removing rerere.o (🗑️)
removing reset.o (🗑️)
removing resolve-undo.o (🗑️)
removing revision.o (🗑️)
removing run-command.o (🗑️)
removing send-pack.o (🗑️)
removing sequencer.o (🗑️)
removing serve.o (🗑️)
removing server-info.o (🗑️)
removing setup.o (🗑️)
removing sh-i18n--envsubst.o (🗑️)
removing sha1dc/.depend/ (🗑️)
removing sha1dc/sha1.o (🗑️)
removing sha1dc/ubc_check.o (🗑️)
removing sha1dc_git.o (🗑️)
removing sha256/block/.depend/ (🗑️)
removing sha256/block/sha256.o (🗑️)
removing shallow.o (🗑️)
removing shell.o (🗑️)
removing sideband.o (🗑️)
removing sigchain.o (🗑️)
removing sparse-index.o (🗑️)
removing split-index.o (🗑️)
removing stable-qsort.o (🗑️)
removing strbuf.o (🗑️)
removing streaming.o (🗑️)
removing string-list.o (🗑️)
removing strmap.o (🗑️)
removing strvec.o (🗑️)
removing sub-process.o (🗑️)
removing submodule-config.o (🗑️)
removing submodule.o (🗑️)
removing symlinks.o (🗑️)
removing t/helper/.depend/ (🗑️)
removing t/helper/test-advise.o (🗑️)
removing t/helper/test-bitmap.o (🗑️)
removing t/helper/test-bloom.o (🗑️)
removing t/helper/test-chmtime.o (🗑️)
removing t/helper/test-config.o (🗑️)
removing t/helper/test-crontab.o (🗑️)
removing t/helper/test-csprng.o (🗑️)
removing t/helper/test-ctype.o (🗑️)
removing t/helper/test-date.o (🗑️)
removing t/helper/test-delta.o (🗑️)
removing t/helper/test-dir-iterator.o (🗑️)
removing t/helper/test-drop-caches.o (🗑️)
removing t/helper/test-dump-cache-tree.o (🗑️)
removing t/helper/test-dump-fsmonitor.o (🗑️)
removing t/helper/test-dump-split-index.o (🗑️)
removing t/helper/test-dump-untracked-cache.o (🗑️)
removing t/helper/test-example-decorate.o (🗑️)
removing t/helper/test-fake-ssh (🗑️)
removing t/helper/test-fake-ssh.o (🗑️)
removing t/helper/test-fast-rebase.o (🗑️)
removing t/helper/test-genrandom.o (🗑️)
removing t/helper/test-genzeros.o (🗑️)
removing t/helper/test-getcwd.o (🗑️)
removing t/helper/test-hash-speed.o (🗑️)
removing t/helper/test-hash.o (🗑️)
removing t/helper/test-hashmap.o (🗑️)
removing t/helper/test-index-version.o (🗑️)
removing t/helper/test-json-writer.o (🗑️)
removing t/helper/test-lazy-init-name-hash.o (🗑️)
removing t/helper/test-match-trees.o (🗑️)
removing t/helper/test-mergesort.o (🗑️)
removing t/helper/test-mktemp.o (🗑️)
removing t/helper/test-oid-array.o (🗑️)
removing t/helper/test-oidmap.o (🗑️)
removing t/helper/test-oidtree.o (🗑️)
removing t/helper/test-online-cpus.o (🗑️)
removing t/helper/test-parse-options.o (🗑️)
removing t/helper/test-parse-pathspec-file.o (🗑️)
removing t/helper/test-partial-clone.o (🗑️)
removing t/helper/test-path-utils.o (🗑️)
removing t/helper/test-pcre2-config.o (🗑️)
removing t/helper/test-pkt-line.o (🗑️)
removing t/helper/test-prio-queue.o (🗑️)
removing t/helper/test-proc-receive.o (🗑️)
removing t/helper/test-progress.o (🗑️)
removing t/helper/test-reach.o (🗑️)
removing t/helper/test-read-cache.o (🗑️)
removing t/helper/test-read-graph.o (🗑️)
removing t/helper/test-read-midx.o (🗑️)
removing t/helper/test-ref-store.o (🗑️)
removing t/helper/test-reftable.o (🗑️)
removing t/helper/test-regex.o (🗑️)
removing t/helper/test-repository.o (🗑️)
removing t/helper/test-revision-walking.o (🗑️)
removing t/helper/test-run-command.o (🗑️)
removing t/helper/test-scrap-cache-tree.o (🗑️)
removing t/helper/test-serve-v2.o (🗑️)
removing t/helper/test-sha1.o (🗑️)
removing t/helper/test-sha256.o (🗑️)
removing t/helper/test-sigchain.o (🗑️)
removing t/helper/test-simple-ipc.o (🗑️)
removing t/helper/test-strcmp-offset.o (🗑️)
removing t/helper/test-string-list.o (🗑️)
removing t/helper/test-submodule-config.o (🗑️)
removing t/helper/test-submodule-nested-repo-config.o (🗑️)
removing t/helper/test-subprocess.o (🗑️)
removing t/helper/test-tool (🗑️)
removing t/helper/test-tool.o (🗑️)
removing t/helper/test-trace2.o (🗑️)
removing t/helper/test-urlmatch-normalization.o (🗑️)
removing t/helper/test-userdiff.o (🗑️)
removing t/helper/test-wildmatch.o (🗑️)
removing t/helper/test-windows-named-pipe.o (🗑️)
removing t/helper/test-write-cache.o (🗑️)
removing t/helper/test-xml-encode.o (🗑️)
removing tag.o (🗑️)
removing tempfile.o (🗑️)
removing templates/blt/ (🗑️)
removing templates/boilerplates.made (🗑️)
removing thread-utils.o (🗑️)
removing tmp-objdir.o (🗑️)
removing trace.o (🗑️)
removing trace2.o (🗑️)
removing trace2/.depend/ (🗑️)
removing trace2/tr2_cfg.o (🗑️)
removing trace2/tr2_cmd_name.o (🗑️)
removing trace2/tr2_dst.o (🗑️)
removing trace2/tr2_sid.o (🗑️)
removing trace2/tr2_sysenv.o (🗑️)
removing trace2/tr2_tbuf.o (🗑️)
removing trace2/tr2_tgt_event.o (🗑️)
removing trace2/tr2_tgt_normal.o (🗑️)
removing trace2/tr2_tgt_perf.o (🗑️)
removing trace2/tr2_tls.o (🗑️)
removing trailer.o (🗑️)
removing transport-helper.o (🗑️)
removing transport.o (🗑️)
removing tree-diff.o (🗑️)
removing tree-walk.o (🗑️)
removing tree.o (🗑️)
removing unix-socket.o (🗑️)
removing unix-stream-server.o (🗑️)
removing unpack-trees.o (🗑️)
removing upload-pack.o (🗑️)
removing url.o (🗑️)
removing urlmatch.o (🗑️)
removing usage.o (🗑️)
removing userdiff.o (🗑️)
removing utf8.o (🗑️)
removing varint.o (🗑️)
removing version.o (🗑️)
removing versioncmp.o (🗑️)
removing walker.o (🗑️)
removing wildmatch.o (🗑️)
removing worktree.o (🗑️)
removing wrapper.o (🗑️)
removing write-or-die.o (🗑️)
removing ws.o (🗑️)
removing wt-status.o (🗑️)
removing xdiff-interface.o (🗑️)
removing xdiff/.depend/ (🗑️)
removing xdiff/lib.a (🗑️)
removing xdiff/xdiffi.o (🗑️)
removing xdiff/xemit.o (🗑️)
removing xdiff/xhistogram.o (🗑️)
removing xdiff/xmerge.o (🗑️)
removing xdiff/xpatience.o (🗑️)
removing xdiff/xprepare.o (🗑️)
removing xdiff/xutils.o (🗑️)
removing zlib.o (🗑️)
ek@apok:~/src/git ((49fd5b99a5...)|BISECTING)$ git bisect old
Bisecting: 2 revisions left to test after this (roughly 1 step)
[75df9df0f81368816612cdb11a6c4bb054724ea3] submodule--helper: reduce logic in run_update_procedure()
ek@apok:~/src/git ((75df9df0f8...)|BISECTING)$ make prefix="$HOME/mygit" -j5
GIT_VERSION = 2.35.1.519.g75df9df0f8
* new build flags
CC fuzz-commit-graph.o
CC fuzz-pack-headers.o
CC fuzz-pack-idx.o
CC daemon.o
CC common-main.o
CC abspath.o
* new link flags
CC add-interactive.o
CC add-patch.o
CC advice.o
CC alias.o
CC alloc.o
CC apply.o
CC archive-tar.o
CC archive-zip.o
CC archive.o
* new prefix flags
CC base85.o
CC bisect.o
CC blame.o
CC blob.o
CC bloom.o
CC branch.o
CC bulk-checkin.o
CC bundle.o
CC cache-tree.o
CC cbtree.o
CC chdir-notify.o
CC checkout.o
CC chunk-format.o
CC color.o
CC column.o
CC combine-diff.o
CC commit-graph.o
CC commit-reach.o
CC commit.o
CC compat/obstack.o
CC compat/terminal.o
CC compat/zlib-uncompress2.o
CC config.o
CC connect.o
CC connected.o
CC convert.o
CC copy.o
CC credential.o
CC csum-file.o
CC ctype.o
CC date.o
CC decorate.o
CC delta-islands.o
CC diff-delta.o
CC diff-merges.o
CC diff-lib.o
CC diff-no-index.o
CC diff.o
CC diffcore-break.o
CC diffcore-delta.o
CC diffcore-order.o
CC diffcore-pickaxe.o
CC diffcore-rename.o
CC diffcore-rotate.o
CC dir-iterator.o
CC dir.o
CC editor.o
CC entry.o
CC environment.o
CC ewah/bitmap.o
CC ewah/ewah_bitmap.o
CC ewah/ewah_io.o
CC ewah/ewah_rlw.o
CC exec-cmd.o
CC fetch-negotiator.o
CC fetch-pack.o
CC fmt-merge-msg.o
CC fsck.o
CC fsmonitor.o
CC gettext.o
CC gpg-interface.o
CC graph.o
CC grep.o
CC hash-lookup.o
CC hashmap.o
GEN command-list.h
CC hex.o
CC hook.o
CC ident.o
CC json-writer.o
CC kwset.o
CC levenshtein.o
CC line-log.o
CC line-range.o
CC linear-assignment.o
CC list-objects-filter-options.o
CC list-objects-filter.o
CC list-objects.o
CC ll-merge.o
CC lockfile.o
CC log-tree.o
CC ls-refs.o
CC mailinfo.o
CC mailmap.o
CC match-trees.o
CC mem-pool.o
CC merge-blobs.o
CC merge-ort.o
CC merge-ort-wrappers.o
CC merge-recursive.o
CC merge.o
CC mergesort.o
CC midx.o
CC name-hash.o
CC negotiator/default.o
CC negotiator/noop.o
CC negotiator/skipping.o
CC notes-cache.o
CC notes-merge.o
CC notes-utils.o
CC notes.o
CC object-file.o
CC object-name.o
CC object.o
CC oid-array.o
CC oidmap.o
CC oidset.o
CC oidtree.o
CC pack-bitmap-write.o
CC pack-bitmap.o
CC pack-check.o
CC pack-objects.o
CC pack-revindex.o
CC pack-write.o
CC packfile.o
CC pager.o
CC parallel-checkout.o
CC parse-options-cb.o
CC parse-options.o
CC patch-delta.o
CC patch-ids.o
CC path.o
CC pathspec.o
CC pkt-line.o
CC preload-index.o
CC pretty.o
CC prio-queue.o
CC progress.o
CC promisor-remote.o
CC prompt.o
CC protocol.o
CC protocol-caps.o
CC prune-packed.o
CC quote.o
CC range-diff.o
CC reachable.o
CC read-cache.o
CC rebase-interactive.o
CC rebase.o
CC ref-filter.o
CC reflog-walk.o
CC refs.o
CC refs/debug.o
CC refs/files-backend.o
CC refs/iterator.o
CC refs/packed-backend.o
CC refs/ref-cache.o
CC refspec.o
CC remote.o
CC replace-object.o
CC repo-settings.o
CC repository.o
CC rerere.o
CC reset.o
CC resolve-undo.o
CC revision.o
CC run-command.o
CC send-pack.o
CC sequencer.o
CC serve.o
CC server-info.o
CC setup.o
CC shallow.o
CC sideband.o
CC sigchain.o
CC sparse-index.o
CC split-index.o
CC stable-qsort.o
CC strbuf.o
CC streaming.o
CC string-list.o
CC strmap.o
CC strvec.o
CC sub-process.o
CC submodule-config.o
CC submodule.o
CC symlinks.o
CC tag.o
CC tempfile.o
CC thread-utils.o
CC tmp-objdir.o
CC trace.o
CC trace2.o
CC trace2/tr2_cfg.o
CC trace2/tr2_cmd_name.o
CC trace2/tr2_dst.o
CC trace2/tr2_sid.o
CC trace2/tr2_sysenv.o
CC trace2/tr2_tbuf.o
CC trace2/tr2_tgt_event.o
CC trace2/tr2_tgt_normal.o
CC trace2/tr2_tgt_perf.o
CC trace2/tr2_tls.o
CC trailer.o
CC transport-helper.o
CC transport.o
CC tree-diff.o
CC tree-walk.o
CC tree.o
CC unpack-trees.o
CC upload-pack.o
CC url.o
CC urlmatch.o
CC usage.o
CC userdiff.o
CC utf8.o
CC varint.o
CC versioncmp.o
CC walker.o
CC wildmatch.o
CC worktree.o
CC wrapper.o
CC write-or-die.o
CC ws.o
CC wt-status.o
CC xdiff-interface.o
CC zlib.o
CC unix-socket.o
CC unix-stream-server.o
CC compat/simple-ipc/ipc-shared.o
CC compat/simple-ipc/ipc-unix-socket.o
CC sha1dc_git.o
CC sha1dc/sha1.o
CC sha1dc/ubc_check.o
CC sha256/block/sha256.o
CC compat/linux/procinfo.o
CC compat/fopen.o
CC compat/strlcpy.o
CC compat/qsort_s.o
CC xdiff/xdiffi.o
CC xdiff/xemit.o
CC xdiff/xhistogram.o
CC xdiff/xmerge.o
CC xdiff/xpatience.o
CC xdiff/xprepare.o
CC xdiff/xutils.o
CC reftable/basics.o
CC reftable/error.o
CC reftable/block.o
CC reftable/blocksource.o
CC reftable/iter.o
CC reftable/publicbasics.o
CC reftable/merged.o
CC reftable/pq.o
CC reftable/reader.o
CC reftable/record.o
CC reftable/refname.o
CC reftable/generic.o
CC reftable/stack.o
CC reftable/tree.o
CC reftable/writer.o
CC http-backend.o
CC imap-send.o
CC http.o
CC sh-i18n--envsubst.o
CC shell.o
CC http-walker.o
CC http-fetch.o
CC http-push.o
CC remote-curl.o
* new script parameters
* new perl-specific parameters
* new Python interpreter location
GEN git-instaweb
CC git.o
CC builtin/add.o
CC builtin/am.o
CC builtin/annotate.o
CC builtin/apply.o
CC builtin/archive.o
CC builtin/bisect--helper.o
CC builtin/blame.o
CC builtin/branch.o
GEN hook-list.h
CC builtin/bundle.o
CC builtin/cat-file.o
CC builtin/check-attr.o
CC builtin/check-ignore.o
CC builtin/check-mailmap.o
CC builtin/check-ref-format.o
CC builtin/checkout--worker.o
CC builtin/checkout-index.o
CC builtin/checkout.o
CC builtin/clean.o
CC builtin/clone.o
CC builtin/column.o
CC builtin/commit-graph.o
CC builtin/commit-tree.o
CC builtin/commit.o
CC builtin/config.o
CC builtin/count-objects.o
CC builtin/credential-cache--daemon.o
CC builtin/credential-cache.o
CC builtin/credential-store.o
CC builtin/credential.o
CC builtin/describe.o
CC builtin/diff-files.o
CC builtin/diff-index.o
CC builtin/diff-tree.o
CC builtin/diff.o
CC builtin/difftool.o
CC builtin/env--helper.o
CC builtin/fast-export.o
CC builtin/fast-import.o
CC builtin/fetch-pack.o
CC builtin/fetch.o
CC builtin/fmt-merge-msg.o
CC builtin/for-each-ref.o
CC builtin/for-each-repo.o
CC builtin/fsck.o
CC builtin/gc.o
CC builtin/get-tar-commit-id.o
CC builtin/grep.o
CC builtin/hash-object.o
GEN config-list.h
CC builtin/hook.o
CC builtin/index-pack.o
CC builtin/init-db.o
CC builtin/interpret-trailers.o
CC builtin/log.o
CC builtin/ls-files.o
CC builtin/ls-remote.o
CC builtin/ls-tree.o
CC builtin/mailinfo.o
CC builtin/mailsplit.o
CC builtin/merge-base.o
CC builtin/merge-file.o
CC builtin/merge-index.o
CC builtin/merge-ours.o
CC builtin/merge-recursive.o
CC builtin/merge-tree.o
CC builtin/merge.o
CC builtin/mktag.o
CC builtin/mktree.o
CC builtin/multi-pack-index.o
CC builtin/mv.o
CC builtin/name-rev.o
CC builtin/notes.o
CC builtin/pack-objects.o
CC builtin/pack-redundant.o
CC builtin/pack-refs.o
CC builtin/patch-id.o
CC builtin/prune-packed.o
CC builtin/prune.o
CC builtin/pull.o
CC builtin/push.o
CC builtin/range-diff.o
CC builtin/read-tree.o
CC builtin/rebase.o
CC builtin/receive-pack.o
CC builtin/reflog.o
CC builtin/remote-ext.o
CC builtin/remote-fd.o
CC builtin/remote.o
CC builtin/repack.o
CC builtin/replace.o
CC builtin/rerere.o
CC builtin/reset.o
CC builtin/rev-list.o
CC builtin/rev-parse.o
CC builtin/revert.o
CC builtin/rm.o
CC builtin/send-pack.o
CC builtin/shortlog.o
CC builtin/show-branch.o
CC builtin/show-index.o
CC builtin/show-ref.o
CC builtin/sparse-checkout.o
CC builtin/stash.o
CC builtin/stripspace.o
CC builtin/submodule--helper.o
CC builtin/symbolic-ref.o
CC builtin/tag.o
CC builtin/unpack-file.o
CC builtin/unpack-objects.o
CC builtin/update-index.o
CC builtin/update-ref.o
CC builtin/update-server-info.o
CC builtin/upload-archive.o
CC builtin/upload-pack.o
CC builtin/var.o
CC builtin/verify-commit.o
CC builtin/verify-pack.o
CC builtin/verify-tag.o
CC builtin/worktree.o
CC builtin/write-tree.o
GEN git-mergetool--lib
GEN git-sh-i18n
GEN git-sh-setup
CC attr.o
CC help.o
CC version.o
AR xdiff/lib.a
AR reftable/libreftable.a
GEN git-bisect
GEN git-difftool--helper
GEN git-filter-branch
GEN git-merge-octopus
GEN git-merge-one-file
GEN git-merge-resolve
GEN git-mergetool
GEN git-quiltimport
GEN git-request-pull
GEN git-submodule
GEN git-web--browse
GEN GIT-PERL-HEADER
GEN git-p4
CC builtin/bugreport.o
CC builtin/help.o
GEN git-add--interactive
GEN git-archimport
GEN git-cvsexportcommit
GEN git-cvsimport
GEN git-cvsserver
GEN git-send-email
GEN git-svn
AR libgit.a
LINK git-daemon
LINK git-http-backend
LINK git-imap-send
LINK git-sh-i18n--envsubst
LINK git-shell
LINK git-http-fetch
LINK git-http-push
LINK git-remote-http
LINK git
LN/CP git-remote-https
LN/CP git-remote-ftp
LN/CP git-remote-ftps
BUILTIN git-add
BUILTIN git-am
BUILTIN git-annotate
BUILTIN git-apply
BUILTIN git-archive
BUILTIN git-bisect--helper
BUILTIN git-blame
BUILTIN git-branch
BUILTIN git-bugreport
BUILTIN git-bundle
BUILTIN git-cat-file
BUILTIN git-check-attr
BUILTIN git-check-ignore
BUILTIN git-check-mailmap
BUILTIN git-check-ref-format
BUILTIN git-checkout--worker
BUILTIN git-checkout-index
BUILTIN git-checkout
BUILTIN git-clean
BUILTIN git-clone
BUILTIN git-column
BUILTIN git-commit-graph
BUILTIN git-commit-tree
BUILTIN git-commit
BUILTIN git-config
BUILTIN git-count-objects
BUILTIN git-credential-cache
BUILTIN git-credential-cache--daemon
BUILTIN git-credential-store
BUILTIN git-credential
BUILTIN git-describe
BUILTIN git-diff-files
BUILTIN git-diff-index
BUILTIN git-diff-tree
BUILTIN git-diff
BUILTIN git-difftool
BUILTIN git-env--helper
BUILTIN git-fast-export
BUILTIN git-fast-import
BUILTIN git-fetch-pack
BUILTIN git-fetch
BUILTIN git-fmt-merge-msg
BUILTIN git-for-each-repo
BUILTIN git-for-each-ref
BUILTIN git-fsck
BUILTIN git-get-tar-commit-id
BUILTIN git-gc
BUILTIN git-grep
BUILTIN git-hash-object
BUILTIN git-hook
BUILTIN git-help
BUILTIN git-index-pack
BUILTIN git-init-db
BUILTIN git-log
BUILTIN git-ls-files
BUILTIN git-interpret-trailers
BUILTIN git-ls-remote
BUILTIN git-ls-tree
BUILTIN git-mailinfo
BUILTIN git-mailsplit
BUILTIN git-merge-base
BUILTIN git-merge-file
BUILTIN git-merge-index
BUILTIN git-merge-ours
BUILTIN git-merge-recursive
BUILTIN git-merge-tree
BUILTIN git-merge
BUILTIN git-mktag
BUILTIN git-mktree
BUILTIN git-mv
BUILTIN git-name-rev
BUILTIN git-multi-pack-index
BUILTIN git-pack-objects
BUILTIN git-notes
BUILTIN git-pack-redundant
BUILTIN git-pack-refs
BUILTIN git-patch-id
BUILTIN git-prune-packed
BUILTIN git-prune
BUILTIN git-pull
BUILTIN git-push
BUILTIN git-range-diff
BUILTIN git-read-tree
BUILTIN git-rebase
BUILTIN git-receive-pack
BUILTIN git-reflog
BUILTIN git-remote-ext
BUILTIN git-remote
BUILTIN git-remote-fd
BUILTIN git-repack
BUILTIN git-replace
BUILTIN git-rerere
BUILTIN git-reset
BUILTIN git-rev-list
BUILTIN git-rev-parse
BUILTIN git-revert
BUILTIN git-rm
BUILTIN git-send-pack
BUILTIN git-shortlog
BUILTIN git-show-branch
BUILTIN git-show-ref
BUILTIN git-sparse-checkout
BUILTIN git-show-index
BUILTIN git-stash
BUILTIN git-stripspace
BUILTIN git-submodule--helper
BUILTIN git-symbolic-ref
BUILTIN git-tag
BUILTIN git-unpack-file
BUILTIN git-unpack-objects
BUILTIN git-update-index
BUILTIN git-update-ref
BUILTIN git-update-server-info
BUILTIN git-upload-pack
BUILTIN git-upload-archive
BUILTIN git-var
BUILTIN git-verify-commit
BUILTIN git-verify-pack
BUILTIN git-verify-tag
BUILTIN git-worktree
BUILTIN git-write-tree
BUILTIN git-cherry-pick
BUILTIN git-cherry
BUILTIN git-format-patch
BUILTIN git-fsck-objects
BUILTIN git-init
BUILTIN git-maintenance
BUILTIN git-merge-subtree
BUILTIN git-restore
BUILTIN git-show
BUILTIN git-stage
BUILTIN git-status
BUILTIN git-switch
BUILTIN git-whatchanged
SUBDIR git-gui
GITGUI_VERSION = 0.21.0.99.gdf4f9
* new locations or Tcl/Tk interpreter
MSGFMT po/bg.msg MSGFMT po/de.msg MSGFMT po/el.msg MSGFMT po/fr.msg MSGFMT po/hu.msg 565 translated.
579 translated.
520 translated.
MSGFMT po/it.msg 381 translated, 4 fuzzy, 6 untranslated.
MSGFMT po/ja.msg MSGFMT po/nb.msg MSGFMT po/pt_br.msg 514 translated.
MSGFMT po/pt_pt.msg 519 translated, 1 untranslated.
546 translated, 1 untranslated.
MSGFMT po/sv.msg MSGFMT po/ru.msg 550 translated.
474 translated, 39 untranslated.
MSGFMT po/vi.msg MSGFMT po/zh_cn.msg 520 translated.
GEN git-gui
547 translated.
INDEX lib/
579 translated.
543 translated.
366 translated, 7 fuzzy, 17 untranslated.
SUBDIR gitk-git
Generating catalog po/bg.msg
msgfmt --statistics --tcl po/bg.po -l bg -d po/
Generating catalog po/ca.msg
* new Tcl/Tk interpreter location
msgfmt --statistics --tcl po/ca.po -l ca -d po/
Generating catalog po/de.msg
msgfmt --statistics --tcl po/de.po -l de -d po/
Generating catalog po/es.msg
msgfmt --statistics --tcl po/es.po -l es -d po/
Generating catalog po/fr.msg
msgfmt --statistics --tcl po/fr.po -l fr -d po/
307 translated messages307 translated messages.
.
317 translated messages.
Generating catalog po/hu.msg
Generating catalog po/it.msg
msgfmt --statistics --tcl po/hu.po -l hu -d po/
msgfmt --statistics --tcl po/it.po -l it -d po/
184 translated messages, 46 fuzzy translations, 77 untranslated messages.
Generating catalog po/ja.msg
msgfmt --statistics --tcl po/ja.po -l ja -d po/
311 translated messages.
Generating catalog po/pt_br.msg
msgfmt --statistics --tcl po/pt_br.po -l pt_br -d po/
Generating catalog po/pt_pt.msg
msgfmt --statistics --tcl po/pt_pt.po -l pt_pt -d po/
274 translated messages, 17 fuzzy translations, 16 untranslated messages.
277 translated messages, 18 fuzzy translations, 12 untranslated messages.
311 translated messages.
Generating catalog po/ru.msg
msgfmt --statistics --tcl po/ru.po -l ru -d po/
Generating catalog po/sv.msg
msgfmt --statistics --tcl po/sv.po -l sv -d po/
Generating catalog po/vi.msg
msgfmt --statistics --tcl po/vi.po -l vi -d po/
279 translated messages, 16 fuzzy translations, 12 untranslated messages.
311 translated messages.
Generating catalog po/zh_cn.msg
msgfmt --statistics --tcl po/zh_cn.po -l zh_cn -d po/
307 translated messages.
311 translated messages.
GEN gitk-wish
317 translated messages.
317 translated messages.
SUBDIR templates
MKDIR -p po/build/locale/bg/LC_MESSAGES
MSGFMT po/build/locale/bg/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/ca/LC_MESSAGES
MSGFMT po/build/locale/ca/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/de/LC_MESSAGES
MSGFMT po/build/locale/de/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/el/LC_MESSAGES
MSGFMT po/build/locale/el/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/es/LC_MESSAGES
MSGFMT po/build/locale/es/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/fr/LC_MESSAGES
MSGFMT po/build/locale/fr/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/id/LC_MESSAGES
MSGFMT po/build/locale/id/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/is/LC_MESSAGES
MSGFMT po/build/locale/is/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/it/LC_MESSAGES
MSGFMT po/build/locale/it/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/ko/LC_MESSAGES
MSGFMT po/build/locale/ko/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/pl/LC_MESSAGES
MSGFMT po/build/locale/pl/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/pt_PT/LC_MESSAGES
MSGFMT po/build/locale/pt_PT/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/ru/LC_MESSAGES
MSGFMT po/build/locale/ru/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/sv/LC_MESSAGES
MSGFMT po/build/locale/sv/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/tr/LC_MESSAGES
MSGFMT po/build/locale/tr/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/vi/LC_MESSAGES
MSGFMT po/build/locale/vi/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/zh_CN/LC_MESSAGES
MSGFMT po/build/locale/zh_CN/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/zh_TW/LC_MESSAGES
MSGFMT po/build/locale/zh_TW/LC_MESSAGES/git.mo
MKDIR -p perl/build/lib
GEN perl/build/lib/Git.pm
MKDIR -p perl/build/lib/Git
GEN perl/build/lib/Git/IndexInfo.pm
GEN perl/build/lib/Git/LoadCPAN.pm
GEN perl/build/lib/Git/Packet.pm
GEN perl/build/lib/Git/I18N.pm
GEN perl/build/lib/Git/SVN.pm
MKDIR -p perl/build/lib/Git/LoadCPAN
GEN perl/build/lib/Git/LoadCPAN/Error.pm
MKDIR -p perl/build/lib/Git/SVN
GEN perl/build/lib/Git/SVN/Fetcher.pm
GEN perl/build/lib/Git/SVN/GlobSpec.pm
GEN perl/build/lib/Git/SVN/Log.pm
GEN perl/build/lib/Git/SVN/Editor.pm
GEN perl/build/lib/Git/SVN/Migration.pm
GEN perl/build/lib/Git/SVN/Prompt.pm
GEN perl/build/lib/Git/SVN/Ra.pm
GEN perl/build/lib/Git/SVN/Utils.pm
MKDIR -p perl/build/lib/Git/LoadCPAN/Mail
GEN perl/build/lib/Git/LoadCPAN/Mail/Address.pm
MKDIR -p perl/build/lib/Git/SVN/Memoize
GEN perl/build/lib/Git/SVN/Memoize/YAML.pm
MKDIR -p perl/build/lib/FromCPAN
GEN perl/build/lib/FromCPAN/Error.pm
MKDIR -p perl/build/lib/FromCPAN/Mail
GEN perl/build/lib/FromCPAN/Mail/Address.pm
CC t/helper/test-fake-ssh.o
CC reftable/basics_test.o
CC reftable/dump.o
CC reftable/block_test.o
CC reftable/merged_test.o
CC reftable/pq_test.o
CC reftable/record_test.o
CC reftable/readwrite_test.o
CC reftable/refname_test.o
CC reftable/stack_test.o
CC reftable/test_framework.o
CC reftable/tree_test.o
CC t/helper/test-tool.o
CC t/helper/test-advise.o
CC t/helper/test-bitmap.o
CC t/helper/test-bloom.o
CC t/helper/test-chmtime.o
CC t/helper/test-config.o
CC t/helper/test-crontab.o
CC t/helper/test-csprng.o
CC t/helper/test-ctype.o
CC t/helper/test-date.o
CC t/helper/test-delta.o
CC t/helper/test-dir-iterator.o
CC t/helper/test-drop-caches.o
CC t/helper/test-dump-cache-tree.o
CC t/helper/test-dump-fsmonitor.o
CC t/helper/test-dump-split-index.o
CC t/helper/test-dump-untracked-cache.o
CC t/helper/test-example-decorate.o
CC t/helper/test-fast-rebase.o
CC t/helper/test-genrandom.o
CC t/helper/test-genzeros.o
CC t/helper/test-getcwd.o
CC t/helper/test-hash-speed.o
CC t/helper/test-hash.o
CC t/helper/test-hashmap.o
CC t/helper/test-index-version.o
CC t/helper/test-json-writer.o
CC t/helper/test-lazy-init-name-hash.o
CC t/helper/test-match-trees.o
CC t/helper/test-mergesort.o
CC t/helper/test-mktemp.o
CC t/helper/test-oid-array.o
CC t/helper/test-oidmap.o
CC t/helper/test-oidtree.o
CC t/helper/test-online-cpus.o
CC t/helper/test-parse-options.o
CC t/helper/test-parse-pathspec-file.o
CC t/helper/test-partial-clone.o
CC t/helper/test-path-utils.o
CC t/helper/test-pcre2-config.o
CC t/helper/test-pkt-line.o
CC t/helper/test-prio-queue.o
CC t/helper/test-proc-receive.o
CC t/helper/test-progress.o
CC t/helper/test-reach.o
CC t/helper/test-read-cache.o
CC t/helper/test-read-graph.o
CC t/helper/test-read-midx.o
CC t/helper/test-ref-store.o
CC t/helper/test-reftable.o
CC t/helper/test-regex.o
CC t/helper/test-repository.o
CC t/helper/test-revision-walking.o
CC t/helper/test-run-command.o
CC t/helper/test-scrap-cache-tree.o
CC t/helper/test-serve-v2.o
CC t/helper/test-sha1.o
CC t/helper/test-sha256.o
CC t/helper/test-sigchain.o
CC t/helper/test-simple-ipc.o
CC t/helper/test-strcmp-offset.o
CC t/helper/test-string-list.o
CC t/helper/test-submodule-config.o
CC t/helper/test-submodule-nested-repo-config.o
CC t/helper/test-subprocess.o
CC t/helper/test-trace2.o
CC t/helper/test-urlmatch-normalization.o
CC t/helper/test-userdiff.o
CC t/helper/test-wildmatch.o
CC t/helper/test-windows-named-pipe.o
CC t/helper/test-write-cache.o
CC t/helper/test-xml-encode.o
MKDIR -p bin-wrappers
GEN bin-wrappers/git
GEN bin-wrappers/git-receive-pack
GEN bin-wrappers/git-shell
GEN bin-wrappers/git-upload-archive
GEN bin-wrappers/git-upload-pack
GEN bin-wrappers/git-cvsserver
GEN bin-wrappers/test-fake-ssh
GEN bin-wrappers/test-tool
AR reftable/libreftable_test.a
LINK t/helper/test-fake-ssh
LINK t/helper/test-tool
ek@apok:~/src/git ((75df9df0f8...)|BISECTING)$ make prefix="$HOME/mygit" install
SUBDIR git-gui
SUBDIR gitk-git
SUBDIR templates
install -d -m 755 '/home/ek/mygit/bin'
install -d -m 755 '/home/ek/mygit/libexec/git-core'
install git-daemon git-http-backend git-imap-send git-sh-i18n--envsubst git-shell git-http-fetch git-http-push git-remote-http git-remote-https git-remote-ftp git-remote-ftps '/home/ek/mygit/libexec/git-core'
install git-bisect git-difftool--helper git-filter-branch git-merge-octopus git-merge-one-file git-merge-resolve git-mergetool git-quiltimport git-request-pull git-submodule git-web--browse git-add--interactive git-archimport git-cvsexportcommit git-cvsimport git-cvsserver git-send-email git-svn git-p4 git-instaweb '/home/ek/mygit/libexec/git-core'
install -m 644 git-mergetool--lib git-sh-i18n git-sh-setup '/home/ek/mygit/libexec/git-core'
install git git-receive-pack git-shell git-upload-archive git-upload-pack '/home/ek/mygit/bin'
install git-cvsserver '/home/ek/mygit/bin'
make -C templates DESTDIR='' install
make[1]: Entering directory '/home/ek/src/git/templates'
install -d -m 755 '/home/ek/mygit/share/git-core/templates'
(cd blt && tar cf - .) | \
(cd '/home/ek/mygit/share/git-core/templates' && umask 022 && tar xof -)
make[1]: Leaving directory '/home/ek/src/git/templates'
install -d -m 755 '/home/ek/mygit/libexec/git-core/mergetools'
install -m 644 mergetools/* '/home/ek/mygit/libexec/git-core/mergetools'
install -d -m 755 '/home/ek/mygit/share/locale'
(cd po/build/locale && tar cf - .) | \
(cd '/home/ek/mygit/share/locale' && umask 022 && tar xof -)
install -d -m 755 '/home/ek/mygit/share/perl5'
(cd perl/build/lib && tar cf - .) | \
(cd '/home/ek/mygit/share/perl5' && umask 022 && tar xof -)
make -C gitweb install
make[1]: Entering directory '/home/ek/src/git/gitweb'
make[2]: Entering directory '/home/ek/src/git'
make[2]: 'GIT-VERSION-FILE' is up to date.
make[2]: Leaving directory '/home/ek/src/git'
GEN gitweb.cgi
GEN static/gitweb.js
install -d -m 755 '/home/ek/mygit/share/gitweb'
install -m 755 gitweb.cgi '/home/ek/mygit/share/gitweb'
install -d -m 755 '/home/ek/mygit/share/gitweb/static'
install -m 644 static/gitweb.js static/gitweb.css static/git-logo.png static/git-favicon.png '/home/ek/mygit/share/gitweb/static'
make[1]: Leaving directory '/home/ek/src/git/gitweb'
make -C gitk-git install
make[1]: Entering directory '/home/ek/src/git/gitk-git'
install -d -m 755 '/home/ek/mygit/bin'
install -m 755 gitk-wish '/home/ek/mygit/bin'/gitk
install -d -m 755 '/home/ek/mygit/share/gitk/lib/msgs'
install -m 644 po/bg.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/ca.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/de.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/es.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/fr.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/hu.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/it.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/ja.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/pt_br.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/pt_pt.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/ru.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/sv.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/vi.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/zh_cn.msg '/home/ek/mygit/share/gitk/lib/msgs' && true
make[1]: Leaving directory '/home/ek/src/git/gitk-git'
make -C git-gui gitexecdir='/home/ek/mygit/libexec/git-core' install
make[1]: Entering directory '/home/ek/src/git/git-gui'
DEST /home/ek/mygit/libexec/git-core
INSTALL 755 git-gui
INSTALL 755 git-gui--askpass
LINK git-citool -> git-gui
DEST /home/ek/mygit/share/git-gui/lib
INSTALL 644 tclIndex
INSTALL 644 about.tcl
INSTALL 644 blame.tcl
INSTALL 644 branch_checkout.tcl
INSTALL 644 branch_create.tcl
INSTALL 644 branch_delete.tcl
INSTALL 644 branch_rename.tcl
INSTALL 644 branch.tcl
INSTALL 644 browser.tcl
INSTALL 644 checkout_op.tcl
INSTALL 644 choose_font.tcl
INSTALL 644 choose_repository.tcl
INSTALL 644 choose_rev.tcl
INSTALL 644 chord.tcl
INSTALL 644 class.tcl
INSTALL 644 commit.tcl
INSTALL 644 console.tcl
INSTALL 644 database.tcl
INSTALL 644 date.tcl
INSTALL 644 diff.tcl
INSTALL 644 encoding.tcl
INSTALL 644 error.tcl
INSTALL 644 index.tcl
INSTALL 644 line.tcl
INSTALL 644 logo.tcl
INSTALL 644 merge.tcl
INSTALL 644 mergetool.tcl
INSTALL 644 option.tcl
INSTALL 644 remote_add.tcl
INSTALL 644 remote_branch_delete.tcl
INSTALL 644 remote.tcl
INSTALL 644 search.tcl
INSTALL 644 shortcut.tcl
INSTALL 644 spellcheck.tcl
INSTALL 644 sshkey.tcl
INSTALL 644 status_bar.tcl
INSTALL 644 themed.tcl
INSTALL 644 tools_dlg.tcl
INSTALL 644 tools.tcl
INSTALL 644 transport.tcl
INSTALL 644 win32.tcl
INSTALL 644 git-gui.ico
INSTALL 644 win32_shortcut.js
DEST /home/ek/mygit/share/git-gui/lib/msgs
INSTALL 644 bg.msg
INSTALL 644 de.msg
INSTALL 644 el.msg
INSTALL 644 fr.msg
INSTALL 644 hu.msg
INSTALL 644 it.msg
INSTALL 644 ja.msg
INSTALL 644 nb.msg
INSTALL 644 pt_br.msg
INSTALL 644 pt_pt.msg
INSTALL 644 ru.msg
INSTALL 644 sv.msg
INSTALL 644 vi.msg
INSTALL 644 zh_cn.msg
make[1]: Leaving directory '/home/ek/src/git/git-gui'
bindir=$(cd '/home/ek/mygit/bin' && pwd) && \
execdir=$(cd '/home/ek/mygit/libexec/git-core' && pwd) && \
destdir_from_execdir_SQ=$(echo 'libexec/git-core' | sed -e 's|[^/][^/]*|..|g') && \
{ test "$bindir/" = "$execdir/" || \
for p in git git-shell git-cvsserver; do \
rm -f "$execdir/$p" && \
test -n "" && \
ln -s "$destdir_from_execdir_SQ/bin/$p" "$execdir/$p" || \
{ test -z "" && \
ln "$bindir/$p" "$execdir/$p" 2>/dev/null || \
cp "$bindir/$p" "$execdir/$p" || exit; } \
done; \
} && \
for p in git-receive-pack git-upload-archive git-upload-pack; do \
rm -f "$bindir/$p" && \
test -n "" && \
ln -s "git" "$bindir/$p" || \
{ test -z "" && \
ln "$bindir/git" "$bindir/$p" 2>/dev/null || \
ln -s "git" "$bindir/$p" 2>/dev/null || \
cp "$bindir/git" "$bindir/$p" || exit; }; \
done && \
for p in git-add git-am git-annotate git-apply git-archive git-bisect--helper git-blame git-branch git-bugreport git-bundle git-cat-file git-check-attr git-check-ignore git-check-mailmap git-check-ref-format git-checkout--worker git-checkout-index git-checkout git-clean git-clone git-column git-commit-graph git-commit-tree git-commit git-config git-count-objects git-credential-cache--daemon git-credential-cache git-credential-store git-credential git-describe git-diff-files git-diff-index git-diff-tree git-diff git-difftool git-env--helper git-fast-export git-fast-import git-fetch-pack git-fetch git-fmt-merge-msg git-for-each-ref git-for-each-repo git-fsck git-gc git-get-tar-commit-id git-grep git-hash-object git-help git-hook git-index-pack git-init-db git-interpret-trailers git-log git-ls-files git-ls-remote git-ls-tree git-mailinfo git-mailsplit git-merge-base git-merge-file git-merge-index git-merge-ours git-merge-recursive git-merge-tree git-merge git-mktag git-mktree git-multi-pack-index git-mv git-name-rev git-notes git-pack-objects git-pack-redundant git-pack-refs git-patch-id git-prune-packed git-prune git-pull git-push git-range-diff git-read-tree git-rebase git-receive-pack git-reflog git-remote-ext git-remote-fd git-remote git-repack git-replace git-rerere git-reset git-rev-list git-rev-parse git-revert git-rm git-send-pack git-shortlog git-show-branch git-show-index git-show-ref git-sparse-checkout git-stash git-stripspace git-submodule--helper git-symbolic-ref git-tag git-unpack-file git-unpack-objects git-update-index git-update-ref git-update-server-info git-upload-archive git-upload-pack git-var git-verify-commit git-verify-pack git-verify-tag git-worktree git-write-tree git-cherry git-cherry-pick git-format-patch git-fsck-objects git-init git-maintenance git-merge-subtree git-restore git-show git-stage git-status git-switch git-whatchanged; do \
rm -f "$execdir/$p" && \
if test -z ""; \
then \
test -n "" && \
ln -s "$destdir_from_execdir_SQ/bin/git" "$execdir/$p" || \
{ test -z "" && \
ln "$execdir/git" "$execdir/$p" 2>/dev/null || \
ln -s "git" "$execdir/$p" 2>/dev/null || \
cp "$execdir/git" "$execdir/$p" || exit; }; \
fi \
done && \
remote_curl_aliases="git-remote-https git-remote-ftp git-remote-ftps" && \
for p in $remote_curl_aliases; do \
rm -f "$execdir/$p" && \
test -n "" && \
ln -s "git-remote-http" "$execdir/$p" || \
{ test -z "" && \
ln "$execdir/git-remote-http" "$execdir/$p" 2>/dev/null || \
ln -s "git-remote-http" "$execdir/$p" 2>/dev/null || \
cp "$execdir/git-remote-http" "$execdir/$p" || exit; } \
done
ek@apok:~/src/git ((75df9df0f8...)|BISECTING)$ pushd ~/tmp
~/tmp ~/src/git
ek@apok:~/tmp$ PATH="$HOME/mygit/bin:$PATH" GIT_SSH_COMMAND='{ pid="$(ps -o ppid:1= -p "$$")"; ps -o pid:1=,cmd= -p "$pid"; awk -v RS=\\0 "/^GIT_CONFIG/ { print \" \" \$0 }" "/proc/$pid/environ"; } 1>&2; ssh' GIT_CONFIG_COUNT=1 GIT_CONFIG_KEY_0=foo.bar GIT_CONFIG_VALUE_0=baz git clone --recurse-submodules git@github.com:EliahKagan/has-nested-submodule.git
Cloning into 'has-nested-submodule'...
1082447 git clone --recurse-submodules git@github.com:EliahKagan/has-nested-submodule.git
GIT_CONFIG_COUNT=1
GIT_CONFIG_KEY_0=foo.bar
GIT_CONFIG_VALUE_0=baz
remote: Enumerating objects: 4, done.
remote: Counting objects: 100% (4/4), done.
remote: Compressing objects: 100% (4/4), done.
remote: Total 4 (delta 0), reused 4 (delta 0), pack-reused 0
Receiving objects: 100% (4/4), done.
Submodule 'has-submodule' (git@github.com:EliahKagan/has-submodule.git) registered for path 'has-submodule'
Cloning into '/home/ek/tmp/has-nested-submodule/has-submodule'...
1082490 /home/ek/mygit/libexec/git-core/git clone --no-checkout --progress --separate-git-dir /home/ek/tmp/has-nested-submodule/.git/modules/has-submodule --no-single-branch -- git@github.com:EliahKagan/has-submodule.git /home/ek/tmp/has-nested-submodule/has-submodule
GIT_CONFIG_COUNT=1
GIT_CONFIG_KEY_0=foo.bar
GIT_CONFIG_VALUE_0=baz
remote: Enumerating objects: 4, done.
remote: Counting objects: 100% (4/4), done.
remote: Compressing objects: 100% (4/4), done.
remote: Total 4 (delta 0), reused 4 (delta 0), pack-reused 0
Receiving objects: 100% (4/4), done.
Submodule path 'has-submodule': checked out '8de4a40d782ddfd338f2ada312714d60541c6f80'
Submodule 'trivial' (git@github.com:EliahKagan/trivial.git) registered for path 'has-submodule/trivial'
Cloning into '/home/ek/tmp/has-nested-submodule/has-submodule/trivial'...
1082516 /home/ek/mygit/libexec/git-core/git clone --no-checkout --progress --separate-git-dir /home/ek/tmp/has-nested-submodule/.git/modules/has-submodule/modules/trivial --no-single-branch -- git@github.com:EliahKagan/trivial.git /home/ek/tmp/has-nested-submodule/has-submodule/trivial
GIT_CONFIG_KEY_0=foo.bar
GIT_CONFIG_PARAMETERS=
GIT_CONFIG_VALUE_0=baz
remote: Enumerating objects: 3, done.
remote: Counting objects: 100% (3/3), done.
remote: Compressing objects: 100% (2/2), done.
remote: Total 3 (delta 0), reused 3 (delta 0), pack-reused 0
Receiving objects: 100% (3/3), done.
Submodule path 'has-submodule/trivial': checked out '656a18dc1e48e035a05a72011a62bca5f41fa07e'
ek@apok:~/tmp$ rm -rf has-nested-submodule/
ek@apok:~/tmp$ popd
~/src/git
ek@apok:~/src/git ((75df9df0f8...)|BISECTING)$ rm -r ~/mygit
ek@apok:~/src/git ((75df9df0f8...)|BISECTING)$ gix clean -xde
removing .depend/ (🗑️)
removing GIT-BUILD-OPTIONS (🗑️)
removing GIT-CFLAGS (🗑️)
removing GIT-LDFLAGS (🗑️)
removing GIT-PERL-DEFINES (🗑️)
removing GIT-PERL-HEADER (🗑️)
removing GIT-PREFIX (🗑️)
removing GIT-PYTHON-VARS (🗑️)
removing GIT-SCRIPT-DEFINES (🗑️)
removing GIT-USER-AGENT (🗑️)
removing GIT-VERSION-FILE (🗑️)
removing abspath.o (🗑️)
removing add-interactive.o (🗑️)
removing add-patch.o (🗑️)
removing advice.o (🗑️)
removing alias.o (🗑️)
removing alloc.o (🗑️)
removing apply.o (🗑️)
removing archive-tar.o (🗑️)
removing archive-zip.o (🗑️)
removing archive.o (🗑️)
removing attr.o (🗑️)
removing base85.o (🗑️)
removing bin-wrappers/ (🗑️)
removing bisect.o (🗑️)
removing blame.o (🗑️)
removing blob.o (🗑️)
removing bloom.o (🗑️)
removing branch.o (🗑️)
removing builtin/.depend/ (🗑️)
removing builtin/add.o (🗑️)
removing builtin/am.o (🗑️)
removing builtin/annotate.o (🗑️)
removing builtin/apply.o (🗑️)
removing builtin/archive.o (🗑️)
removing builtin/bisect--helper.o (🗑️)
removing builtin/blame.o (🗑️)
removing builtin/branch.o (🗑️)
removing builtin/bugreport.o (🗑️)
removing builtin/bundle.o (🗑️)
removing builtin/cat-file.o (🗑️)
removing builtin/check-attr.o (🗑️)
removing builtin/check-ignore.o (🗑️)
removing builtin/check-mailmap.o (🗑️)
removing builtin/check-ref-format.o (🗑️)
removing builtin/checkout--worker.o (🗑️)
removing builtin/checkout-index.o (🗑️)
removing builtin/checkout.o (🗑️)
removing builtin/clean.o (🗑️)
removing builtin/clone.o (🗑️)
removing builtin/column.o (🗑️)
removing builtin/commit-graph.o (🗑️)
removing builtin/commit-tree.o (🗑️)
removing builtin/commit.o (🗑️)
removing builtin/config.o (🗑️)
removing builtin/count-objects.o (🗑️)
removing builtin/credential-cache--daemon.o (🗑️)
removing builtin/credential-cache.o (🗑️)
removing builtin/credential-store.o (🗑️)
removing builtin/credential.o (🗑️)
removing builtin/describe.o (🗑️)
removing builtin/diff-files.o (🗑️)
removing builtin/diff-index.o (🗑️)
removing builtin/diff-tree.o (🗑️)
removing builtin/diff.o (🗑️)
removing builtin/difftool.o (🗑️)
removing builtin/env--helper.o (🗑️)
removing builtin/fast-export.o (🗑️)
removing builtin/fast-import.o (🗑️)
removing builtin/fetch-pack.o (🗑️)
removing builtin/fetch.o (🗑️)
removing builtin/fmt-merge-msg.o (🗑️)
removing builtin/for-each-ref.o (🗑️)
removing builtin/for-each-repo.o (🗑️)
removing builtin/fsck.o (🗑️)
removing builtin/gc.o (🗑️)
removing builtin/get-tar-commit-id.o (🗑️)
removing builtin/grep.o (🗑️)
removing builtin/hash-object.o (🗑️)
removing builtin/help.o (🗑️)
removing builtin/hook.o (🗑️)
removing builtin/index-pack.o (🗑️)
removing builtin/init-db.o (🗑️)
removing builtin/interpret-trailers.o (🗑️)
removing builtin/log.o (🗑️)
removing builtin/ls-files.o (🗑️)
removing builtin/ls-remote.o (🗑️)
removing builtin/ls-tree.o (🗑️)
removing builtin/mailinfo.o (🗑️)
removing builtin/mailsplit.o (🗑️)
removing builtin/merge-base.o (🗑️)
removing builtin/merge-file.o (🗑️)
removing builtin/merge-index.o (🗑️)
removing builtin/merge-ours.o (🗑️)
removing builtin/merge-recursive.o (🗑️)
removing builtin/merge-tree.o (🗑️)
removing builtin/merge.o (🗑️)
removing builtin/mktag.o (🗑️)
removing builtin/mktree.o (🗑️)
removing builtin/multi-pack-index.o (🗑️)
removing builtin/mv.o (🗑️)
removing builtin/name-rev.o (🗑️)
removing builtin/notes.o (🗑️)
removing builtin/pack-objects.o (🗑️)
removing builtin/pack-redundant.o (🗑️)
removing builtin/pack-refs.o (🗑️)
removing builtin/patch-id.o (🗑️)
removing builtin/prune-packed.o (🗑️)
removing builtin/prune.o (🗑️)
removing builtin/pull.o (🗑️)
removing builtin/push.o (🗑️)
removing builtin/range-diff.o (🗑️)
removing builtin/read-tree.o (🗑️)
removing builtin/rebase.o (🗑️)
removing builtin/receive-pack.o (🗑️)
removing builtin/reflog.o (🗑️)
removing builtin/remote-ext.o (🗑️)
removing builtin/remote-fd.o (🗑️)
removing builtin/remote.o (🗑️)
removing builtin/repack.o (🗑️)
removing builtin/replace.o (🗑️)
removing builtin/rerere.o (🗑️)
removing builtin/reset.o (🗑️)
removing builtin/rev-list.o (🗑️)
removing builtin/rev-parse.o (🗑️)
removing builtin/revert.o (🗑️)
removing builtin/rm.o (🗑️)
removing builtin/send-pack.o (🗑️)
removing builtin/shortlog.o (🗑️)
removing builtin/show-branch.o (🗑️)
removing builtin/show-index.o (🗑️)
removing builtin/show-ref.o (🗑️)
removing builtin/sparse-checkout.o (🗑️)
removing builtin/stash.o (🗑️)
removing builtin/stripspace.o (🗑️)
removing builtin/submodule--helper.o (🗑️)
removing builtin/symbolic-ref.o (🗑️)
removing builtin/tag.o (🗑️)
removing builtin/unpack-file.o (🗑️)
removing builtin/unpack-objects.o (🗑️)
removing builtin/update-index.o (🗑️)
removing builtin/update-ref.o (🗑️)
removing builtin/update-server-info.o (🗑️)
removing builtin/upload-archive.o (🗑️)
removing builtin/upload-pack.o (🗑️)
removing builtin/var.o (🗑️)
removing builtin/verify-commit.o (🗑️)
removing builtin/verify-pack.o (🗑️)
removing builtin/verify-tag.o (🗑️)
removing builtin/worktree.o (🗑️)
removing builtin/write-tree.o (🗑️)
removing bulk-checkin.o (🗑️)
removing bundle.o (🗑️)
removing cache-tree.o (🗑️)
removing cbtree.o (🗑️)
removing chdir-notify.o (🗑️)
removing checkout.o (🗑️)
removing chunk-format.o (🗑️)
removing color.o (🗑️)
removing column.o (🗑️)
removing combine-diff.o (🗑️)
removing command-list.h (🗑️)
removing commit-graph.o (🗑️)
removing commit-reach.o (🗑️)
removing commit.o (🗑️)
removing common-main.o (🗑️)
removing compat/.depend/ (🗑️)
removing compat/fopen.o (🗑️)
removing compat/linux/.depend/ (🗑️)
removing compat/linux/procinfo.o (🗑️)
removing compat/obstack.o (🗑️)
removing compat/qsort_s.o (🗑️)
removing compat/simple-ipc/.depend/ (🗑️)
removing compat/simple-ipc/ipc-shared.o (🗑️)
removing compat/simple-ipc/ipc-unix-socket.o (🗑️)
removing compat/strlcpy.o (🗑️)
removing compat/terminal.o (🗑️)
removing compat/zlib-uncompress2.o (🗑️)
removing config-list.h (🗑️)
removing config.o (🗑️)
removing connect.o (🗑️)
removing connected.o (🗑️)
removing contrib/scalar/.depend/ (🗑️)
removing convert.o (🗑️)
removing copy.o (🗑️)
removing credential.o (🗑️)
removing csum-file.o (🗑️)
removing ctype.o (🗑️)
removing daemon.o (🗑️)
removing date.o (🗑️)
removing decorate.o (🗑️)
removing delta-islands.o (🗑️)
removing diff-delta.o (🗑️)
removing diff-lib.o (🗑️)
removing diff-merges.o (🗑️)
removing diff-no-index.o (🗑️)
removing diff.o (🗑️)
removing diffcore-break.o (🗑️)
removing diffcore-delta.o (🗑️)
removing diffcore-order.o (🗑️)
removing diffcore-pickaxe.o (🗑️)
removing diffcore-rename.o (🗑️)
removing diffcore-rotate.o (🗑️)
removing dir-iterator.o (🗑️)
removing dir.o (🗑️)
removing editor.o (🗑️)
removing entry.o (🗑️)
removing environment.o (🗑️)
removing ewah/.depend/ (🗑️)
removing ewah/bitmap.o (🗑️)
removing ewah/ewah_bitmap.o (🗑️)
removing ewah/ewah_io.o (🗑️)
removing ewah/ewah_rlw.o (🗑️)
removing exec-cmd.o (🗑️)
removing fetch-negotiator.o (🗑️)
removing fetch-pack.o (🗑️)
removing fmt-merge-msg.o (🗑️)
removing fsck.o (🗑️)
removing fsmonitor.o (🗑️)
removing fuzz-commit-graph.o (🗑️)
removing fuzz-pack-headers.o (🗑️)
removing fuzz-pack-idx.o (🗑️)
removing gettext.o (🗑️)
removing git (🗑️)
removing git-add (🗑️)
removing git-add--interactive (🗑️)
removing git-am (🗑️)
removing git-annotate (🗑️)
removing git-apply (🗑️)
removing git-archimport (🗑️)
removing git-archive (🗑️)
removing git-bisect (🗑️)
removing git-bisect--helper (🗑️)
removing git-blame (🗑️)
removing git-branch (🗑️)
removing git-bugreport (🗑️)
removing git-bundle (🗑️)
removing git-cat-file (🗑️)
removing git-check-attr (🗑️)
removing git-check-ignore (🗑️)
removing git-check-mailmap (🗑️)
removing git-check-ref-format (🗑️)
removing git-checkout (🗑️)
removing git-checkout--worker (🗑️)
removing git-checkout-index (🗑️)
removing git-cherry (🗑️)
removing git-cherry-pick (🗑️)
removing git-clean (🗑️)
removing git-clone (🗑️)
removing git-column (🗑️)
removing git-commit (🗑️)
removing git-commit-graph (🗑️)
removing git-commit-tree (🗑️)
removing git-config (🗑️)
removing git-count-objects (🗑️)
removing git-credential (🗑️)
removing git-credential-cache (🗑️)
removing git-credential-cache--daemon (🗑️)
removing git-credential-store (🗑️)
removing git-cvsexportcommit (🗑️)
removing git-cvsimport (🗑️)
removing git-cvsserver (🗑️)
removing git-daemon (🗑️)
removing git-describe (🗑️)
removing git-diff (🗑️)
removing git-diff-files (🗑️)
removing git-diff-index (🗑️)
removing git-diff-tree (🗑️)
removing git-difftool (🗑️)
removing git-difftool--helper (🗑️)
removing git-env--helper (🗑️)
removing git-fast-export (🗑️)
removing git-fast-import (🗑️)
removing git-fetch (🗑️)
removing git-fetch-pack (🗑️)
removing git-filter-branch (🗑️)
removing git-fmt-merge-msg (🗑️)
removing git-for-each-ref (🗑️)
removing git-for-each-repo (🗑️)
removing git-format-patch (🗑️)
removing git-fsck (🗑️)
removing git-fsck-objects (🗑️)
removing git-gc (🗑️)
removing git-get-tar-commit-id (🗑️)
removing git-grep (🗑️)
removing git-gui/GIT-GUI-VARS (🗑️)
removing git-gui/GIT-VERSION-FILE (🗑️)
removing git-gui/git-gui (🗑️)
removing git-gui/lib/tclIndex (🗑️)
removing git-gui/po/bg.msg (🗑️)
removing git-gui/po/de.msg (🗑️)
removing git-gui/po/el.msg (🗑️)
removing git-gui/po/fr.msg (🗑️)
removing git-gui/po/hu.msg (🗑️)
removing git-gui/po/it.msg (🗑️)
removing git-gui/po/ja.msg (🗑️)
removing git-gui/po/nb.msg (🗑️)
removing git-gui/po/pt_br.msg (🗑️)
removing git-gui/po/pt_pt.msg (🗑️)
removing git-gui/po/ru.msg (🗑️)
removing git-gui/po/sv.msg (🗑️)
removing git-gui/po/vi.msg (🗑️)
removing git-gui/po/zh_cn.msg (🗑️)
removing git-hash-object (🗑️)
removing git-help (🗑️)
removing git-hook (🗑️)
removing git-http-backend (🗑️)
removing git-http-fetch (🗑️)
removing git-http-push (🗑️)
removing git-imap-send (🗑️)
removing git-index-pack (🗑️)
removing git-init (🗑️)
removing git-init-db (🗑️)
removing git-instaweb (🗑️)
removing git-interpret-trailers (🗑️)
removing git-log (🗑️)
removing git-ls-files (🗑️)
removing git-ls-remote (🗑️)
removing git-ls-tree (🗑️)
removing git-mailinfo (🗑️)
removing git-mailsplit (🗑️)
removing git-maintenance (🗑️)
removing git-merge (🗑️)
removing git-merge-base (🗑️)
removing git-merge-file (🗑️)
removing git-merge-index (🗑️)
removing git-merge-octopus (🗑️)
removing git-merge-one-file (🗑️)
removing git-merge-ours (🗑️)
removing git-merge-recursive (🗑️)
removing git-merge-resolve (🗑️)
removing git-merge-subtree (🗑️)
removing git-merge-tree (🗑️)
removing git-mergetool (🗑️)
removing git-mergetool--lib (🗑️)
removing git-mktag (🗑️)
removing git-mktree (🗑️)
removing git-multi-pack-index (🗑️)
removing git-mv (🗑️)
removing git-name-rev (🗑️)
removing git-notes (🗑️)
removing git-p4 (🗑️)
removing git-pack-objects (🗑️)
removing git-pack-redundant (🗑️)
removing git-pack-refs (🗑️)
removing git-patch-id (🗑️)
removing git-prune (🗑️)
removing git-prune-packed (🗑️)
removing git-pull (🗑️)
removing git-push (🗑️)
removing git-quiltimport (🗑️)
removing git-range-diff (🗑️)
removing git-read-tree (🗑️)
removing git-rebase (🗑️)
removing git-receive-pack (🗑️)
removing git-reflog (🗑️)
removing git-remote (🗑️)
removing git-remote-ext (🗑️)
removing git-remote-fd (🗑️)
removing git-remote-ftp (🗑️)
removing git-remote-ftps (🗑️)
removing git-remote-http (🗑️)
removing git-remote-https (🗑️)
removing git-repack (🗑️)
removing git-replace (🗑️)
removing git-request-pull (🗑️)
removing git-rerere (🗑️)
removing git-reset (🗑️)
removing git-restore (🗑️)
removing git-rev-list (🗑️)
removing git-rev-parse (🗑️)
removing git-revert (🗑️)
removing git-rm (🗑️)
removing git-send-email (🗑️)
removing git-send-pack (🗑️)
removing git-sh-i18n (🗑️)
removing git-sh-i18n--envsubst (🗑️)
removing git-sh-setup (🗑️)
removing git-shell (🗑️)
removing git-shortlog (🗑️)
removing git-show (🗑️)
removing git-show-branch (🗑️)
removing git-show-index (🗑️)
removing git-show-ref (🗑️)
removing git-sparse-checkout (🗑️)
removing git-stage (🗑️)
removing git-stash (🗑️)
removing git-status (🗑️)
removing git-stripspace (🗑️)
removing git-submodule (🗑️)
removing git-submodule--helper (🗑️)
removing git-svn (🗑️)
removing git-switch (🗑️)
removing git-symbolic-ref (🗑️)
removing git-tag (🗑️)
removing git-unpack-file (🗑️)
removing git-unpack-objects (🗑️)
removing git-update-index (🗑️)
removing git-update-ref (🗑️)
removing git-update-server-info (🗑️)
removing git-upload-archive (🗑️)
removing git-upload-pack (🗑️)
removing git-var (🗑️)
removing git-verify-commit (🗑️)
removing git-verify-pack (🗑️)
removing git-verify-tag (🗑️)
removing git-web--browse (🗑️)
removing git-whatchanged (🗑️)
removing git-worktree (🗑️)
removing git-write-tree (🗑️)
removing git.o (🗑️)
removing gitk-git/GIT-TCLTK-VARS (🗑️)
removing gitk-git/gitk-wish (🗑️)
removing gitk-git/po/bg.msg (🗑️)
removing gitk-git/po/ca.msg (🗑️)
removing gitk-git/po/de.msg (🗑️)
removing gitk-git/po/es.msg (🗑️)
removing gitk-git/po/fr.msg (🗑️)
removing gitk-git/po/hu.msg (🗑️)
removing gitk-git/po/it.msg (🗑️)
removing gitk-git/po/ja.msg (🗑️)
removing gitk-git/po/pt_br.msg (🗑️)
removing gitk-git/po/pt_pt.msg (🗑️)
removing gitk-git/po/ru.msg (🗑️)
removing gitk-git/po/sv.msg (🗑️)
removing gitk-git/po/vi.msg (🗑️)
removing gitk-git/po/zh_cn.msg (🗑️)
removing gitweb/GITWEB-BUILD-OPTIONS (🗑️)
removing gitweb/gitweb.cgi (🗑️)
removing gitweb/static/gitweb.js (🗑️)
removing gpg-interface.o (🗑️)
removing graph.o (🗑️)
removing grep.o (🗑️)
removing hash-lookup.o (🗑️)
removing hashmap.o (🗑️)
removing help.o (🗑️)
removing hex.o (🗑️)
removing hook-list.h (🗑️)
removing hook.o (🗑️)
removing http-backend.o (🗑️)
removing http-fetch.o (🗑️)
removing http-push.o (🗑️)
removing http-walker.o (🗑️)
removing http.o (🗑️)
removing ident.o (🗑️)
removing imap-send.o (🗑️)
removing json-writer.o (🗑️)
removing kwset.o (🗑️)
removing levenshtein.o (🗑️)
removing libgit.a (🗑️)
removing line-log.o (🗑️)
removing line-range.o (🗑️)
removing linear-assignment.o (🗑️)
removing list-objects-filter-options.o (🗑️)
removing list-objects-filter.o (🗑️)
removing list-objects.o (🗑️)
removing ll-merge.o (🗑️)
removing lockfile.o (🗑️)
removing log-tree.o (🗑️)
removing ls-refs.o (🗑️)
removing mailinfo.o (🗑️)
removing mailmap.o (🗑️)
removing match-trees.o (🗑️)
removing mem-pool.o (🗑️)
removing merge-blobs.o (🗑️)
removing merge-ort-wrappers.o (🗑️)
removing merge-ort.o (🗑️)
removing merge-recursive.o (🗑️)
removing merge.o (🗑️)
removing mergesort.o (🗑️)
removing midx.o (🗑️)
removing name-hash.o (🗑️)
removing negotiator/.depend/ (🗑️)
removing negotiator/default.o (🗑️)
removing negotiator/noop.o (🗑️)
removing negotiator/skipping.o (🗑️)
removing notes-cache.o (🗑️)
removing notes-merge.o (🗑️)
removing notes-utils.o (🗑️)
removing notes.o (🗑️)
removing object-file.o (🗑️)
removing object-name.o (🗑️)
removing object.o (🗑️)
removing oid-array.o (🗑️)
removing oidmap.o (🗑️)
removing oidset.o (🗑️)
removing oidtree.o (🗑️)
removing pack-bitmap-write.o (🗑️)
removing pack-bitmap.o (🗑️)
removing pack-check.o (🗑️)
removing pack-objects.o (🗑️)
removing pack-revindex.o (🗑️)
removing pack-write.o (🗑️)
removing packfile.o (🗑️)
removing pager.o (🗑️)
removing parallel-checkout.o (🗑️)
removing parse-options-cb.o (🗑️)
removing parse-options.o (🗑️)
removing patch-delta.o (🗑️)
removing patch-ids.o (🗑️)
removing path.o (🗑️)
removing pathspec.o (🗑️)
removing perl/build/ (🗑️)
removing pkt-line.o (🗑️)
removing po/build/ (🗑️)
removing preload-index.o (🗑️)
removing pretty.o (🗑️)
removing prio-queue.o (🗑️)
removing progress.o (🗑️)
removing promisor-remote.o (🗑️)
removing prompt.o (🗑️)
removing protocol-caps.o (🗑️)
removing protocol.o (🗑️)
removing prune-packed.o (🗑️)
removing quote.o (🗑️)
removing range-diff.o (🗑️)
removing reachable.o (🗑️)
removing read-cache.o (🗑️)
removing rebase-interactive.o (🗑️)
removing rebase.o (🗑️)
removing ref-filter.o (🗑️)
removing reflog-walk.o (🗑️)
removing refs.o (🗑️)
removing refs/.depend/ (🗑️)
removing refs/debug.o (🗑️)
removing refs/files-backend.o (🗑️)
removing refs/iterator.o (🗑️)
removing refs/packed-backend.o (🗑️)
removing refs/ref-cache.o (🗑️)
removing refspec.o (🗑️)
removing reftable/.depend/ (🗑️)
removing reftable/basics.o (🗑️)
removing reftable/basics_test.o (🗑️)
removing reftable/block.o (🗑️)
removing reftable/block_test.o (🗑️)
removing reftable/blocksource.o (🗑️)
removing reftable/dump.o (🗑️)
removing reftable/error.o (🗑️)
removing reftable/generic.o (🗑️)
removing reftable/iter.o (🗑️)
removing reftable/libreftable.a (🗑️)
removing reftable/libreftable_test.a (🗑️)
removing reftable/merged.o (🗑️)
removing reftable/merged_test.o (🗑️)
removing reftable/pq.o (🗑️)
removing reftable/pq_test.o (🗑️)
removing reftable/publicbasics.o (🗑️)
removing reftable/reader.o (🗑️)
removing reftable/readwrite_test.o (🗑️)
removing reftable/record.o (🗑️)
removing reftable/record_test.o (🗑️)
removing reftable/refname.o (🗑️)
removing reftable/refname_test.o (🗑️)
removing reftable/stack.o (🗑️)
removing reftable/stack_test.o (🗑️)
removing reftable/test_framework.o (🗑️)
removing reftable/tree.o (🗑️)
removing reftable/tree_test.o (🗑️)
removing reftable/writer.o (🗑️)
removing remote-curl.o (🗑️)
removing remote.o (🗑️)
removing replace-object.o (🗑️)
removing repo-settings.o (🗑️)
removing repository.o (🗑️)
removing rerere.o (🗑️)
removing reset.o (🗑️)
removing resolve-undo.o (🗑️)
removing revision.o (🗑️)
removing run-command.o (🗑️)
removing send-pack.o (🗑️)
removing sequencer.o (🗑️)
removing serve.o (🗑️)
removing server-info.o (🗑️)
removing setup.o (🗑️)
removing sh-i18n--envsubst.o (🗑️)
removing sha1dc/.depend/ (🗑️)
removing sha1dc/sha1.o (🗑️)
removing sha1dc/ubc_check.o (🗑️)
removing sha1dc_git.o (🗑️)
removing sha256/block/.depend/ (🗑️)
removing sha256/block/sha256.o (🗑️)
removing shallow.o (🗑️)
removing shell.o (🗑️)
removing sideband.o (🗑️)
removing sigchain.o (🗑️)
removing sparse-index.o (🗑️)
removing split-index.o (🗑️)
removing stable-qsort.o (🗑️)
removing strbuf.o (🗑️)
removing streaming.o (🗑️)
removing string-list.o (🗑️)
removing strmap.o (🗑️)
removing strvec.o (🗑️)
removing sub-process.o (🗑️)
removing submodule-config.o (🗑️)
removing submodule.o (🗑️)
removing symlinks.o (🗑️)
removing t/helper/.depend/ (🗑️)
removing t/helper/test-advise.o (🗑️)
removing t/helper/test-bitmap.o (🗑️)
removing t/helper/test-bloom.o (🗑️)
removing t/helper/test-chmtime.o (🗑️)
removing t/helper/test-config.o (🗑️)
removing t/helper/test-crontab.o (🗑️)
removing t/helper/test-csprng.o (🗑️)
removing t/helper/test-ctype.o (🗑️)
removing t/helper/test-date.o (🗑️)
removing t/helper/test-delta.o (🗑️)
removing t/helper/test-dir-iterator.o (🗑️)
removing t/helper/test-drop-caches.o (🗑️)
removing t/helper/test-dump-cache-tree.o (🗑️)
removing t/helper/test-dump-fsmonitor.o (🗑️)
removing t/helper/test-dump-split-index.o (🗑️)
removing t/helper/test-dump-untracked-cache.o (🗑️)
removing t/helper/test-example-decorate.o (🗑️)
removing t/helper/test-fake-ssh (🗑️)
removing t/helper/test-fake-ssh.o (🗑️)
removing t/helper/test-fast-rebase.o (🗑️)
removing t/helper/test-genrandom.o (🗑️)
removing t/helper/test-genzeros.o (🗑️)
removing t/helper/test-getcwd.o (🗑️)
removing t/helper/test-hash-speed.o (🗑️)
removing t/helper/test-hash.o (🗑️)
removing t/helper/test-hashmap.o (🗑️)
removing t/helper/test-index-version.o (🗑️)
removing t/helper/test-json-writer.o (🗑️)
removing t/helper/test-lazy-init-name-hash.o (🗑️)
removing t/helper/test-match-trees.o (🗑️)
removing t/helper/test-mergesort.o (🗑️)
removing t/helper/test-mktemp.o (🗑️)
removing t/helper/test-oid-array.o (🗑️)
removing t/helper/test-oidmap.o (🗑️)
removing t/helper/test-oidtree.o (🗑️)
removing t/helper/test-online-cpus.o (🗑️)
removing t/helper/test-parse-options.o (🗑️)
removing t/helper/test-parse-pathspec-file.o (🗑️)
removing t/helper/test-partial-clone.o (🗑️)
removing t/helper/test-path-utils.o (🗑️)
removing t/helper/test-pcre2-config.o (🗑️)
removing t/helper/test-pkt-line.o (🗑️)
removing t/helper/test-prio-queue.o (🗑️)
removing t/helper/test-proc-receive.o (🗑️)
removing t/helper/test-progress.o (🗑️)
removing t/helper/test-reach.o (🗑️)
removing t/helper/test-read-cache.o (🗑️)
removing t/helper/test-read-graph.o (🗑️)
removing t/helper/test-read-midx.o (🗑️)
removing t/helper/test-ref-store.o (🗑️)
removing t/helper/test-reftable.o (🗑️)
removing t/helper/test-regex.o (🗑️)
removing t/helper/test-repository.o (🗑️)
removing t/helper/test-revision-walking.o (🗑️)
removing t/helper/test-run-command.o (🗑️)
removing t/helper/test-scrap-cache-tree.o (🗑️)
removing t/helper/test-serve-v2.o (🗑️)
removing t/helper/test-sha1.o (🗑️)
removing t/helper/test-sha256.o (🗑️)
removing t/helper/test-sigchain.o (🗑️)
removing t/helper/test-simple-ipc.o (🗑️)
removing t/helper/test-strcmp-offset.o (🗑️)
removing t/helper/test-string-list.o (🗑️)
removing t/helper/test-submodule-config.o (🗑️)
removing t/helper/test-submodule-nested-repo-config.o (🗑️)
removing t/helper/test-subprocess.o (🗑️)
removing t/helper/test-tool (🗑️)
removing t/helper/test-tool.o (🗑️)
removing t/helper/test-trace2.o (🗑️)
removing t/helper/test-urlmatch-normalization.o (🗑️)
removing t/helper/test-userdiff.o (🗑️)
removing t/helper/test-wildmatch.o (🗑️)
removing t/helper/test-windows-named-pipe.o (🗑️)
removing t/helper/test-write-cache.o (🗑️)
removing t/helper/test-xml-encode.o (🗑️)
removing tag.o (🗑️)
removing tempfile.o (🗑️)
removing templates/blt/ (🗑️)
removing templates/boilerplates.made (🗑️)
removing thread-utils.o (🗑️)
removing tmp-objdir.o (🗑️)
removing trace.o (🗑️)
removing trace2.o (🗑️)
removing trace2/.depend/ (🗑️)
removing trace2/tr2_cfg.o (🗑️)
removing trace2/tr2_cmd_name.o (🗑️)
removing trace2/tr2_dst.o (🗑️)
removing trace2/tr2_sid.o (🗑️)
removing trace2/tr2_sysenv.o (🗑️)
removing trace2/tr2_tbuf.o (🗑️)
removing trace2/tr2_tgt_event.o (🗑️)
removing trace2/tr2_tgt_normal.o (🗑️)
removing trace2/tr2_tgt_perf.o (🗑️)
removing trace2/tr2_tls.o (🗑️)
removing trailer.o (🗑️)
removing transport-helper.o (🗑️)
removing transport.o (🗑️)
removing tree-diff.o (🗑️)
removing tree-walk.o (🗑️)
removing tree.o (🗑️)
removing unix-socket.o (🗑️)
removing unix-stream-server.o (🗑️)
removing unpack-trees.o (🗑️)
removing upload-pack.o (🗑️)
removing url.o (🗑️)
removing urlmatch.o (🗑️)
removing usage.o (🗑️)
removing userdiff.o (🗑️)
removing utf8.o (🗑️)
removing varint.o (🗑️)
removing version.o (🗑️)
removing versioncmp.o (🗑️)
removing walker.o (🗑️)
removing wildmatch.o (🗑️)
removing worktree.o (🗑️)
removing wrapper.o (🗑️)
removing write-or-die.o (🗑️)
removing ws.o (🗑️)
removing wt-status.o (🗑️)
removing xdiff-interface.o (🗑️)
removing xdiff/.depend/ (🗑️)
removing xdiff/lib.a (🗑️)
removing xdiff/xdiffi.o (🗑️)
removing xdiff/xemit.o (🗑️)
removing xdiff/xhistogram.o (🗑️)
removing xdiff/xmerge.o (🗑️)
removing xdiff/xpatience.o (🗑️)
removing xdiff/xprepare.o (🗑️)
removing xdiff/xutils.o (🗑️)
removing zlib.o (🗑️)
ek@apok:~/src/git ((75df9df0f8...)|BISECTING)$ git bisect old
Bisecting: 0 revisions left to test after this (roughly 1 step)
[f3875ab11528e605a0482940155e137537d238df] submodule--helper: remove forward declaration
ek@apok:~/src/git ((f3875ab115...)|BISECTING)$ make prefix="$HOME/mygit" -j5
GIT_VERSION = 2.35.1.521.gf3875ab115
* new build flags
CC fuzz-commit-graph.o
CC fuzz-pack-headers.o
CC fuzz-pack-idx.o
CC daemon.o
CC abspath.o
CC common-main.o
CC add-interactive.o
* new link flags
CC add-patch.o
CC advice.o
CC alias.o
CC alloc.o
CC apply.o
CC archive-tar.o
CC archive-zip.o
CC archive.o
* new prefix flags
CC base85.o
CC bisect.o
CC blame.o
CC blob.o
CC bloom.o
CC branch.o
CC bulk-checkin.o
CC bundle.o
CC cache-tree.o
CC cbtree.o
CC chdir-notify.o
CC checkout.o
CC chunk-format.o
CC color.o
CC column.o
CC combine-diff.o
CC commit-graph.o
CC commit-reach.o
CC commit.o
CC compat/obstack.o
CC compat/terminal.o
CC compat/zlib-uncompress2.o
CC config.o
CC connect.o
CC connected.o
CC convert.o
CC copy.o
CC credential.o
CC csum-file.o
CC ctype.o
CC date.o
CC decorate.o
CC delta-islands.o
CC diff-delta.o
CC diff-merges.o
CC diff-lib.o
CC diff-no-index.o
CC diff.o
CC diffcore-break.o
CC diffcore-delta.o
CC diffcore-order.o
CC diffcore-pickaxe.o
CC diffcore-rename.o
CC diffcore-rotate.o
CC dir-iterator.o
CC dir.o
CC editor.o
CC entry.o
CC environment.o
CC ewah/bitmap.o
CC ewah/ewah_bitmap.o
CC ewah/ewah_io.o
CC ewah/ewah_rlw.o
CC exec-cmd.o
CC fetch-negotiator.o
CC fetch-pack.o
CC fmt-merge-msg.o
CC fsck.o
CC fsmonitor.o
CC gettext.o
CC gpg-interface.o
CC graph.o
CC grep.o
CC hash-lookup.o
CC hashmap.o
GEN command-list.h
CC hex.o
CC hook.o
CC ident.o
CC json-writer.o
CC kwset.o
CC levenshtein.o
CC line-log.o
CC line-range.o
CC linear-assignment.o
CC list-objects-filter-options.o
CC list-objects-filter.o
CC list-objects.o
CC ll-merge.o
CC lockfile.o
CC log-tree.o
CC ls-refs.o
CC mailinfo.o
CC mailmap.o
CC match-trees.o
CC mem-pool.o
CC merge-blobs.o
CC merge-ort.o
CC merge-ort-wrappers.o
CC merge-recursive.o
CC merge.o
CC mergesort.o
CC midx.o
CC name-hash.o
CC negotiator/default.o
CC negotiator/noop.o
CC negotiator/skipping.o
CC notes-cache.o
CC notes-merge.o
CC notes-utils.o
CC notes.o
CC object-file.o
CC object-name.o
CC object.o
CC oid-array.o
CC oidmap.o
CC oidset.o
CC oidtree.o
CC pack-bitmap-write.o
CC pack-bitmap.o
CC pack-check.o
CC pack-objects.o
CC pack-revindex.o
CC pack-write.o
CC packfile.o
CC pager.o
CC parallel-checkout.o
CC parse-options-cb.o
CC parse-options.o
CC patch-delta.o
CC patch-ids.o
CC path.o
CC pathspec.o
CC pkt-line.o
CC preload-index.o
CC pretty.o
CC prio-queue.o
CC progress.o
CC promisor-remote.o
CC prompt.o
CC protocol.o
CC protocol-caps.o
CC prune-packed.o
CC quote.o
CC range-diff.o
CC reachable.o
CC read-cache.o
CC rebase-interactive.o
CC rebase.o
CC ref-filter.o
CC reflog-walk.o
CC refs.o
CC refs/debug.o
CC refs/files-backend.o
CC refs/iterator.o
CC refs/packed-backend.o
CC refs/ref-cache.o
CC refspec.o
CC remote.o
CC replace-object.o
CC repo-settings.o
CC repository.o
CC rerere.o
CC reset.o
CC resolve-undo.o
CC revision.o
CC run-command.o
CC send-pack.o
CC sequencer.o
CC serve.o
CC server-info.o
CC setup.o
CC shallow.o
CC sideband.o
CC sigchain.o
CC sparse-index.o
CC split-index.o
CC stable-qsort.o
CC strbuf.o
CC streaming.o
CC string-list.o
CC strmap.o
CC strvec.o
CC sub-process.o
CC submodule-config.o
CC submodule.o
CC symlinks.o
CC tag.o
CC tempfile.o
CC thread-utils.o
CC tmp-objdir.o
CC trace.o
CC trace2.o
CC trace2/tr2_cfg.o
CC trace2/tr2_cmd_name.o
CC trace2/tr2_dst.o
CC trace2/tr2_sid.o
CC trace2/tr2_sysenv.o
CC trace2/tr2_tbuf.o
CC trace2/tr2_tgt_event.o
CC trace2/tr2_tgt_normal.o
CC trace2/tr2_tgt_perf.o
CC trace2/tr2_tls.o
CC trailer.o
CC transport-helper.o
CC transport.o
CC tree-diff.o
CC tree-walk.o
CC tree.o
CC unpack-trees.o
CC upload-pack.o
CC url.o
CC urlmatch.o
CC usage.o
CC userdiff.o
CC utf8.o
CC varint.o
CC versioncmp.o
CC walker.o
CC wildmatch.o
CC worktree.o
CC wrapper.o
CC write-or-die.o
CC ws.o
CC wt-status.o
CC xdiff-interface.o
CC zlib.o
CC unix-socket.o
CC unix-stream-server.o
CC compat/simple-ipc/ipc-shared.o
CC compat/simple-ipc/ipc-unix-socket.o
CC sha1dc_git.o
CC sha1dc/sha1.o
CC sha1dc/ubc_check.o
CC sha256/block/sha256.o
CC compat/linux/procinfo.o
CC compat/fopen.o
CC compat/strlcpy.o
CC compat/qsort_s.o
CC xdiff/xdiffi.o
CC xdiff/xemit.o
CC xdiff/xhistogram.o
CC xdiff/xmerge.o
CC xdiff/xpatience.o
CC xdiff/xprepare.o
CC xdiff/xutils.o
CC reftable/basics.o
CC reftable/error.o
CC reftable/blocksource.o
CC reftable/block.o
CC reftable/iter.o
CC reftable/publicbasics.o
CC reftable/merged.o
CC reftable/pq.o
CC reftable/reader.o
CC reftable/record.o
CC reftable/refname.o
CC reftable/generic.o
CC reftable/stack.o
CC reftable/tree.o
CC reftable/writer.o
CC http-backend.o
CC imap-send.o
CC http.o
CC sh-i18n--envsubst.o
CC shell.o
CC http-walker.o
CC http-fetch.o
CC http-push.o
CC remote-curl.o
* new script parameters
* new perl-specific parameters
* new Python interpreter location
GEN git-instaweb
CC git.o
CC builtin/add.o
CC builtin/am.o
CC builtin/annotate.o
CC builtin/apply.o
CC builtin/archive.o
CC builtin/bisect--helper.o
CC builtin/blame.o
CC builtin/branch.o
GEN hook-list.h
CC builtin/bundle.o
CC builtin/cat-file.o
CC builtin/check-attr.o
CC builtin/check-ignore.o
CC builtin/check-mailmap.o
CC builtin/check-ref-format.o
CC builtin/checkout--worker.o
CC builtin/checkout-index.o
CC builtin/checkout.o
CC builtin/clean.o
CC builtin/clone.o
CC builtin/column.o
CC builtin/commit-graph.o
CC builtin/commit-tree.o
CC builtin/commit.o
CC builtin/config.o
CC builtin/count-objects.o
CC builtin/credential-cache--daemon.o
CC builtin/credential-cache.o
CC builtin/credential-store.o
CC builtin/credential.o
CC builtin/describe.o
CC builtin/diff-files.o
CC builtin/diff-index.o
CC builtin/diff-tree.o
CC builtin/diff.o
CC builtin/difftool.o
CC builtin/env--helper.o
CC builtin/fast-export.o
CC builtin/fast-import.o
CC builtin/fetch-pack.o
CC builtin/fetch.o
CC builtin/fmt-merge-msg.o
CC builtin/for-each-ref.o
CC builtin/for-each-repo.o
CC builtin/fsck.o
CC builtin/gc.o
CC builtin/get-tar-commit-id.o
CC builtin/grep.o
CC builtin/hash-object.o
GEN config-list.h
CC builtin/hook.o
CC builtin/index-pack.o
CC builtin/init-db.o
CC builtin/interpret-trailers.o
CC builtin/log.o
CC builtin/ls-files.o
CC builtin/ls-remote.o
CC builtin/ls-tree.o
CC builtin/mailinfo.o
CC builtin/mailsplit.o
CC builtin/merge-base.o
CC builtin/merge-file.o
CC builtin/merge-index.o
CC builtin/merge-ours.o
CC builtin/merge-recursive.o
CC builtin/merge-tree.o
CC builtin/merge.o
CC builtin/mktag.o
CC builtin/mktree.o
CC builtin/multi-pack-index.o
CC builtin/mv.o
CC builtin/name-rev.o
CC builtin/notes.o
CC builtin/pack-objects.o
CC builtin/pack-redundant.o
CC builtin/pack-refs.o
CC builtin/patch-id.o
CC builtin/prune-packed.o
CC builtin/prune.o
CC builtin/pull.o
CC builtin/push.o
CC builtin/range-diff.o
CC builtin/read-tree.o
CC builtin/rebase.o
CC builtin/receive-pack.o
CC builtin/reflog.o
CC builtin/remote-ext.o
CC builtin/remote-fd.o
CC builtin/remote.o
CC builtin/repack.o
CC builtin/replace.o
CC builtin/rerere.o
CC builtin/reset.o
CC builtin/rev-list.o
CC builtin/rev-parse.o
CC builtin/revert.o
CC builtin/rm.o
CC builtin/send-pack.o
CC builtin/shortlog.o
CC builtin/show-branch.o
CC builtin/show-index.o
CC builtin/show-ref.o
CC builtin/sparse-checkout.o
CC builtin/stash.o
CC builtin/stripspace.o
CC builtin/submodule--helper.o
CC builtin/symbolic-ref.o
CC builtin/tag.o
CC builtin/unpack-file.o
CC builtin/unpack-objects.o
CC builtin/update-index.o
CC builtin/update-ref.o
CC builtin/update-server-info.o
CC builtin/upload-archive.o
CC builtin/upload-pack.o
CC builtin/var.o
CC builtin/verify-commit.o
CC builtin/verify-pack.o
CC builtin/verify-tag.o
CC builtin/worktree.o
CC builtin/write-tree.o
GEN git-mergetool--lib
GEN git-sh-i18n
GEN git-sh-setup
CC attr.o
CC help.o
CC version.o
AR xdiff/lib.a
AR reftable/libreftable.a
GEN git-bisect
GEN git-difftool--helper
GEN git-filter-branch
GEN git-merge-octopus
GEN git-merge-one-file
GEN git-merge-resolve
GEN git-mergetool
GEN git-quiltimport
GEN git-request-pull
GEN git-submodule
GEN git-web--browse
GEN GIT-PERL-HEADER
GEN git-p4
CC builtin/bugreport.o
CC builtin/help.o
GEN git-add--interactive
GEN git-archimport
GEN git-cvsexportcommit
GEN git-cvsimport
GEN git-cvsserver
GEN git-send-email
GEN git-svn
AR libgit.a
LINK git-daemon
LINK git-http-backend
LINK git-imap-send
LINK git-sh-i18n--envsubst
LINK git-shell
LINK git-http-fetch
LINK git-http-push
LINK git-remote-http
LINK git
LN/CP git-remote-https
LN/CP git-remote-ftp
LN/CP git-remote-ftps
BUILTIN git-add
BUILTIN git-am
BUILTIN git-annotate
BUILTIN git-apply
BUILTIN git-archive
BUILTIN git-bisect--helper
BUILTIN git-blame
BUILTIN git-branch
BUILTIN git-bugreport
BUILTIN git-bundle
BUILTIN git-cat-file
BUILTIN git-check-attr
BUILTIN git-check-ignore
BUILTIN git-check-mailmap
BUILTIN git-check-ref-format
BUILTIN git-checkout--worker
BUILTIN git-checkout-index
BUILTIN git-checkout
BUILTIN git-clone
BUILTIN git-column
BUILTIN git-clean
BUILTIN git-commit-graph
BUILTIN git-commit-tree
BUILTIN git-commit
BUILTIN git-config
BUILTIN git-count-objects
BUILTIN git-credential-cache--daemon
BUILTIN git-credential-cache
BUILTIN git-credential-store
BUILTIN git-credential
BUILTIN git-describe
BUILTIN git-diff-files
BUILTIN git-diff-index
BUILTIN git-diff-tree
BUILTIN git-diff
BUILTIN git-difftool
BUILTIN git-env--helper
BUILTIN git-fast-export
BUILTIN git-fast-import
BUILTIN git-fetch-pack
BUILTIN git-fetch
BUILTIN git-fmt-merge-msg
BUILTIN git-for-each-ref
BUILTIN git-fsck
BUILTIN git-for-each-repo
BUILTIN git-gc
BUILTIN git-get-tar-commit-id
BUILTIN git-grep
BUILTIN git-hash-object
BUILTIN git-help
BUILTIN git-hook
BUILTIN git-index-pack
BUILTIN git-init-db
BUILTIN git-log
BUILTIN git-interpret-trailers
BUILTIN git-ls-files
BUILTIN git-ls-remote
BUILTIN git-mailinfo
BUILTIN git-mailsplit
BUILTIN git-ls-tree
BUILTIN git-merge-base
BUILTIN git-merge-file
BUILTIN git-merge-index
BUILTIN git-merge-ours
BUILTIN git-merge-recursive
BUILTIN git-merge-tree
BUILTIN git-merge
BUILTIN git-mktag
BUILTIN git-mktree
BUILTIN git-multi-pack-index
BUILTIN git-mv
BUILTIN git-name-rev
BUILTIN git-notes
BUILTIN git-pack-objects
BUILTIN git-pack-redundant
BUILTIN git-pack-refs
BUILTIN git-patch-id
BUILTIN git-prune-packed
BUILTIN git-prune
BUILTIN git-pull
BUILTIN git-range-diff
BUILTIN git-push
BUILTIN git-read-tree
BUILTIN git-rebase
BUILTIN git-receive-pack
BUILTIN git-reflog
BUILTIN git-remote-ext
BUILTIN git-remote-fd
BUILTIN git-remote
BUILTIN git-repack
BUILTIN git-replace
BUILTIN git-rerere
BUILTIN git-reset
BUILTIN git-rev-list
BUILTIN git-rev-parse
BUILTIN git-revert
BUILTIN git-rm
BUILTIN git-send-pack
BUILTIN git-show-branch
BUILTIN git-shortlog
BUILTIN git-show-index
BUILTIN git-show-ref
BUILTIN git-sparse-checkout
BUILTIN git-stash
BUILTIN git-stripspace
BUILTIN git-submodule--helper
BUILTIN git-symbolic-ref
BUILTIN git-tag
BUILTIN git-unpack-file
BUILTIN git-unpack-objects
BUILTIN git-update-index
BUILTIN git-update-ref
BUILTIN git-update-server-info
BUILTIN git-upload-archive
BUILTIN git-upload-pack
BUILTIN git-var
BUILTIN git-verify-commit
BUILTIN git-verify-pack
BUILTIN git-verify-tag
BUILTIN git-worktree
BUILTIN git-write-tree
BUILTIN git-cherry
BUILTIN git-cherry-pick
BUILTIN git-format-patch
BUILTIN git-fsck-objects
BUILTIN git-init
BUILTIN git-maintenance
BUILTIN git-merge-subtree
BUILTIN git-restore
BUILTIN git-show
BUILTIN git-stage
BUILTIN git-status
BUILTIN git-switch
BUILTIN git-whatchanged
SUBDIR git-gui
GITGUI_VERSION = 0.21.0.99.gdf4f9
* new locations or Tcl/Tk interpreter
MSGFMT po/bg.msg MSGFMT po/de.msg MSGFMT po/el.msg MSGFMT po/fr.msg MSGFMT po/hu.msg 381 translated, 4 fuzzy, 6 untranslated.
565 translated.
MSGFMT po/it.msg 520 translated.
MSGFMT po/ja.msg 579 translated.
MSGFMT po/nb.msg MSGFMT po/pt_br.msg 519 translated, 1 untranslated.
514 translated.
MSGFMT po/pt_pt.msg 474 translated, 39 untranslated.
546 translated, 1 untranslated.
MSGFMT po/ru.msg 520 translated.
MSGFMT po/sv.msg MSGFMT po/vi.msg MSGFMT po/zh_cn.msg 547 translated.
GEN git-gui
550 translated.
543 translated.
579 translated.
366 translated, 7 fuzzy, 17 untranslated.
INDEX lib/
SUBDIR gitk-git
Generating catalog po/bg.msg
msgfmt --statistics --tcl po/bg.po -l bg -d po/
Generating catalog po/ca.msg
* new Tcl/Tk interpreter location
Generating catalog po/de.msg
msgfmt --statistics --tcl po/ca.po -l ca -d po/
msgfmt --statistics --tcl po/de.po -l de -d po/
Generating catalog po/es.msg
msgfmt --statistics --tcl po/es.po -l es -d po/
Generating catalog po/fr.msg
msgfmt --statistics --tcl po/fr.po -l fr -d po/
317 translated messages.
307 translated messages.
307 translated messages.
Generating catalog po/hu.msg
msgfmt --statistics --tcl po/hu.po -l hu -d po/
Generating catalog po/it.msg
184 translated messagesmsgfmt --statistics --tcl po/it.po -l it -d po/
, 46 fuzzy translations, 77 untranslated messages.
Generating catalog po/ja.msg
311 translated messages.
msgfmt --statistics --tcl po/ja.po -l ja -d po/
Generating catalog po/pt_br.msg
msgfmt --statistics --tcl po/pt_br.po -l pt_br -d po/
Generating catalog po/pt_pt.msg
msgfmt --statistics --tcl po/pt_pt.po -l pt_pt -d po/
274 translated messages, 17 fuzzy translations, 16 untranslated messages.
277 translated messages, 18 fuzzy translations, 12 untranslated messages.
311 translated messages.
Generating catalog po/ru.msg
Generating catalog po/sv.msg
msgfmt --statistics --tcl po/ru.po -l ru -d po/
Generating catalog po/vi.msg
279 translated messages, 16 fuzzy translations, 12 untranslated messages.
msgfmt --statistics --tcl po/sv.po -l sv -d po/
msgfmt --statistics --tcl po/vi.po -l vi -d po/
311 translated messages.
Generating catalog po/zh_cn.msg
msgfmt --statistics --tcl po/zh_cn.po -l zh_cn -d po/
311 translated messages.
307 translated messages.
317 translated messages.
GEN gitk-wish
317 translated messages.
SUBDIR templates
MKDIR -p po/build/locale/bg/LC_MESSAGES
MSGFMT po/build/locale/bg/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/ca/LC_MESSAGES
MSGFMT po/build/locale/ca/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/de/LC_MESSAGES
MSGFMT po/build/locale/de/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/el/LC_MESSAGES
MSGFMT po/build/locale/el/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/es/LC_MESSAGES
MSGFMT po/build/locale/es/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/fr/LC_MESSAGES
MSGFMT po/build/locale/fr/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/id/LC_MESSAGES
MSGFMT po/build/locale/id/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/is/LC_MESSAGES
MSGFMT po/build/locale/is/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/it/LC_MESSAGES
MSGFMT po/build/locale/it/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/ko/LC_MESSAGES
MSGFMT po/build/locale/ko/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/pl/LC_MESSAGES
MSGFMT po/build/locale/pl/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/pt_PT/LC_MESSAGES
MSGFMT po/build/locale/pt_PT/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/ru/LC_MESSAGES
MSGFMT po/build/locale/ru/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/sv/LC_MESSAGES
MSGFMT po/build/locale/sv/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/tr/LC_MESSAGES
MSGFMT po/build/locale/tr/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/vi/LC_MESSAGES
MSGFMT po/build/locale/vi/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/zh_CN/LC_MESSAGES
MSGFMT po/build/locale/zh_CN/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/zh_TW/LC_MESSAGES
MSGFMT po/build/locale/zh_TW/LC_MESSAGES/git.mo
MKDIR -p perl/build/lib
MKDIR -p perl/build/lib/Git
GEN perl/build/lib/Git/IndexInfo.pm
GEN perl/build/lib/Git.pm
GEN perl/build/lib/Git/LoadCPAN.pm
GEN perl/build/lib/Git/I18N.pm
GEN perl/build/lib/Git/SVN.pm
GEN perl/build/lib/Git/Packet.pm
MKDIR -p perl/build/lib/Git/LoadCPAN
GEN perl/build/lib/Git/LoadCPAN/Error.pm
MKDIR -p perl/build/lib/Git/SVN
GEN perl/build/lib/Git/SVN/Fetcher.pm
GEN perl/build/lib/Git/SVN/Editor.pm
GEN perl/build/lib/Git/SVN/GlobSpec.pm
GEN perl/build/lib/Git/SVN/Log.pm
GEN perl/build/lib/Git/SVN/Migration.pm
GEN perl/build/lib/Git/SVN/Prompt.pm
GEN perl/build/lib/Git/SVN/Utils.pm
GEN perl/build/lib/Git/SVN/Ra.pm
MKDIR -p perl/build/lib/Git/LoadCPAN/Mail
GEN perl/build/lib/Git/LoadCPAN/Mail/Address.pm
MKDIR -p perl/build/lib/Git/SVN/Memoize
GEN perl/build/lib/Git/SVN/Memoize/YAML.pm
MKDIR -p perl/build/lib/FromCPAN
GEN perl/build/lib/FromCPAN/Error.pm
MKDIR -p perl/build/lib/FromCPAN/Mail
GEN perl/build/lib/FromCPAN/Mail/Address.pm
CC t/helper/test-fake-ssh.o
CC reftable/basics_test.o
CC reftable/dump.o
CC reftable/block_test.o
CC reftable/merged_test.o
CC reftable/pq_test.o
CC reftable/record_test.o
CC reftable/readwrite_test.o
CC reftable/refname_test.o
CC reftable/stack_test.o
CC reftable/test_framework.o
CC reftable/tree_test.o
CC t/helper/test-tool.o
CC t/helper/test-advise.o
CC t/helper/test-bitmap.o
CC t/helper/test-bloom.o
CC t/helper/test-chmtime.o
CC t/helper/test-config.o
CC t/helper/test-crontab.o
CC t/helper/test-csprng.o
CC t/helper/test-ctype.o
CC t/helper/test-date.o
CC t/helper/test-delta.o
CC t/helper/test-dir-iterator.o
CC t/helper/test-drop-caches.o
CC t/helper/test-dump-cache-tree.o
CC t/helper/test-dump-fsmonitor.o
CC t/helper/test-dump-split-index.o
CC t/helper/test-dump-untracked-cache.o
CC t/helper/test-example-decorate.o
CC t/helper/test-fast-rebase.o
CC t/helper/test-genrandom.o
CC t/helper/test-genzeros.o
CC t/helper/test-getcwd.o
CC t/helper/test-hash-speed.o
CC t/helper/test-hash.o
CC t/helper/test-hashmap.o
CC t/helper/test-index-version.o
CC t/helper/test-json-writer.o
CC t/helper/test-lazy-init-name-hash.o
CC t/helper/test-match-trees.o
CC t/helper/test-mergesort.o
CC t/helper/test-mktemp.o
CC t/helper/test-oid-array.o
CC t/helper/test-oidmap.o
CC t/helper/test-oidtree.o
CC t/helper/test-online-cpus.o
CC t/helper/test-parse-options.o
CC t/helper/test-parse-pathspec-file.o
CC t/helper/test-partial-clone.o
CC t/helper/test-path-utils.o
CC t/helper/test-pcre2-config.o
CC t/helper/test-pkt-line.o
CC t/helper/test-prio-queue.o
CC t/helper/test-proc-receive.o
CC t/helper/test-progress.o
CC t/helper/test-reach.o
CC t/helper/test-read-cache.o
CC t/helper/test-read-graph.o
CC t/helper/test-read-midx.o
CC t/helper/test-ref-store.o
CC t/helper/test-reftable.o
CC t/helper/test-regex.o
CC t/helper/test-repository.o
CC t/helper/test-revision-walking.o
CC t/helper/test-run-command.o
CC t/helper/test-scrap-cache-tree.o
CC t/helper/test-serve-v2.o
CC t/helper/test-sha1.o
CC t/helper/test-sha256.o
CC t/helper/test-sigchain.o
CC t/helper/test-simple-ipc.o
CC t/helper/test-strcmp-offset.o
CC t/helper/test-string-list.o
CC t/helper/test-submodule-config.o
CC t/helper/test-submodule-nested-repo-config.o
CC t/helper/test-subprocess.o
CC t/helper/test-trace2.o
CC t/helper/test-urlmatch-normalization.o
CC t/helper/test-userdiff.o
CC t/helper/test-wildmatch.o
CC t/helper/test-windows-named-pipe.o
CC t/helper/test-write-cache.o
CC t/helper/test-xml-encode.o
MKDIR -p bin-wrappers
GEN bin-wrappers/git
GEN bin-wrappers/git-receive-pack
GEN bin-wrappers/git-shell
GEN bin-wrappers/git-upload-archive
GEN bin-wrappers/git-upload-pack
GEN bin-wrappers/git-cvsserver
GEN bin-wrappers/test-fake-ssh
GEN bin-wrappers/test-tool
AR reftable/libreftable_test.a
LINK t/helper/test-fake-ssh
LINK t/helper/test-tool
ek@apok:~/src/git ((f3875ab115...)|BISECTING)$ make prefix="$HOME/mygit" install
SUBDIR git-gui
SUBDIR gitk-git
SUBDIR templates
install -d -m 755 '/home/ek/mygit/bin'
install -d -m 755 '/home/ek/mygit/libexec/git-core'
install git-daemon git-http-backend git-imap-send git-sh-i18n--envsubst git-shell git-http-fetch git-http-push git-remote-http git-remote-https git-remote-ftp git-remote-ftps '/home/ek/mygit/libexec/git-core'
install git-bisect git-difftool--helper git-filter-branch git-merge-octopus git-merge-one-file git-merge-resolve git-mergetool git-quiltimport git-request-pull git-submodule git-web--browse git-add--interactive git-archimport git-cvsexportcommit git-cvsimport git-cvsserver git-send-email git-svn git-p4 git-instaweb '/home/ek/mygit/libexec/git-core'
install -m 644 git-mergetool--lib git-sh-i18n git-sh-setup '/home/ek/mygit/libexec/git-core'
install git git-receive-pack git-shell git-upload-archive git-upload-pack '/home/ek/mygit/bin'
install git-cvsserver '/home/ek/mygit/bin'
make -C templates DESTDIR='' install
make[1]: Entering directory '/home/ek/src/git/templates'
install -d -m 755 '/home/ek/mygit/share/git-core/templates'
(cd blt && tar cf - .) | \
(cd '/home/ek/mygit/share/git-core/templates' && umask 022 && tar xof -)
make[1]: Leaving directory '/home/ek/src/git/templates'
install -d -m 755 '/home/ek/mygit/libexec/git-core/mergetools'
install -m 644 mergetools/* '/home/ek/mygit/libexec/git-core/mergetools'
install -d -m 755 '/home/ek/mygit/share/locale'
(cd po/build/locale && tar cf - .) | \
(cd '/home/ek/mygit/share/locale' && umask 022 && tar xof -)
install -d -m 755 '/home/ek/mygit/share/perl5'
(cd perl/build/lib && tar cf - .) | \
(cd '/home/ek/mygit/share/perl5' && umask 022 && tar xof -)
make -C gitweb install
make[1]: Entering directory '/home/ek/src/git/gitweb'
make[2]: Entering directory '/home/ek/src/git'
make[2]: 'GIT-VERSION-FILE' is up to date.
make[2]: Leaving directory '/home/ek/src/git'
GEN gitweb.cgi
GEN static/gitweb.js
install -d -m 755 '/home/ek/mygit/share/gitweb'
install -m 755 gitweb.cgi '/home/ek/mygit/share/gitweb'
install -d -m 755 '/home/ek/mygit/share/gitweb/static'
install -m 644 static/gitweb.js static/gitweb.css static/git-logo.png static/git-favicon.png '/home/ek/mygit/share/gitweb/static'
make[1]: Leaving directory '/home/ek/src/git/gitweb'
make -C gitk-git install
make[1]: Entering directory '/home/ek/src/git/gitk-git'
install -d -m 755 '/home/ek/mygit/bin'
install -m 755 gitk-wish '/home/ek/mygit/bin'/gitk
install -d -m 755 '/home/ek/mygit/share/gitk/lib/msgs'
install -m 644 po/bg.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/ca.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/de.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/es.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/fr.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/hu.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/it.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/ja.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/pt_br.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/pt_pt.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/ru.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/sv.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/vi.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/zh_cn.msg '/home/ek/mygit/share/gitk/lib/msgs' && true
make[1]: Leaving directory '/home/ek/src/git/gitk-git'
make -C git-gui gitexecdir='/home/ek/mygit/libexec/git-core' install
make[1]: Entering directory '/home/ek/src/git/git-gui'
DEST /home/ek/mygit/libexec/git-core
INSTALL 755 git-gui
INSTALL 755 git-gui--askpass
LINK git-citool -> git-gui
DEST /home/ek/mygit/share/git-gui/lib
INSTALL 644 tclIndex
INSTALL 644 about.tcl
INSTALL 644 blame.tcl
INSTALL 644 branch_checkout.tcl
INSTALL 644 branch_create.tcl
INSTALL 644 branch_delete.tcl
INSTALL 644 branch_rename.tcl
INSTALL 644 branch.tcl
INSTALL 644 browser.tcl
INSTALL 644 checkout_op.tcl
INSTALL 644 choose_font.tcl
INSTALL 644 choose_repository.tcl
INSTALL 644 choose_rev.tcl
INSTALL 644 chord.tcl
INSTALL 644 class.tcl
INSTALL 644 commit.tcl
INSTALL 644 console.tcl
INSTALL 644 database.tcl
INSTALL 644 date.tcl
INSTALL 644 diff.tcl
INSTALL 644 encoding.tcl
INSTALL 644 error.tcl
INSTALL 644 index.tcl
INSTALL 644 line.tcl
INSTALL 644 logo.tcl
INSTALL 644 merge.tcl
INSTALL 644 mergetool.tcl
INSTALL 644 option.tcl
INSTALL 644 remote_add.tcl
INSTALL 644 remote_branch_delete.tcl
INSTALL 644 remote.tcl
INSTALL 644 search.tcl
INSTALL 644 shortcut.tcl
INSTALL 644 spellcheck.tcl
INSTALL 644 sshkey.tcl
INSTALL 644 status_bar.tcl
INSTALL 644 themed.tcl
INSTALL 644 tools_dlg.tcl
INSTALL 644 tools.tcl
INSTALL 644 transport.tcl
INSTALL 644 win32.tcl
INSTALL 644 git-gui.ico
INSTALL 644 win32_shortcut.js
DEST /home/ek/mygit/share/git-gui/lib/msgs
INSTALL 644 bg.msg
INSTALL 644 de.msg
INSTALL 644 el.msg
INSTALL 644 fr.msg
INSTALL 644 hu.msg
INSTALL 644 it.msg
INSTALL 644 ja.msg
INSTALL 644 nb.msg
INSTALL 644 pt_br.msg
INSTALL 644 pt_pt.msg
INSTALL 644 ru.msg
INSTALL 644 sv.msg
INSTALL 644 vi.msg
INSTALL 644 zh_cn.msg
make[1]: Leaving directory '/home/ek/src/git/git-gui'
bindir=$(cd '/home/ek/mygit/bin' && pwd) && \
execdir=$(cd '/home/ek/mygit/libexec/git-core' && pwd) && \
destdir_from_execdir_SQ=$(echo 'libexec/git-core' | sed -e 's|[^/][^/]*|..|g') && \
{ test "$bindir/" = "$execdir/" || \
for p in git git-shell git-cvsserver; do \
rm -f "$execdir/$p" && \
test -n "" && \
ln -s "$destdir_from_execdir_SQ/bin/$p" "$execdir/$p" || \
{ test -z "" && \
ln "$bindir/$p" "$execdir/$p" 2>/dev/null || \
cp "$bindir/$p" "$execdir/$p" || exit; } \
done; \
} && \
for p in git-receive-pack git-upload-archive git-upload-pack; do \
rm -f "$bindir/$p" && \
test -n "" && \
ln -s "git" "$bindir/$p" || \
{ test -z "" && \
ln "$bindir/git" "$bindir/$p" 2>/dev/null || \
ln -s "git" "$bindir/$p" 2>/dev/null || \
cp "$bindir/git" "$bindir/$p" || exit; }; \
done && \
for p in git-add git-am git-annotate git-apply git-archive git-bisect--helper git-blame git-branch git-bugreport git-bundle git-cat-file git-check-attr git-check-ignore git-check-mailmap git-check-ref-format git-checkout--worker git-checkout-index git-checkout git-clean git-clone git-column git-commit-graph git-commit-tree git-commit git-config git-count-objects git-credential-cache--daemon git-credential-cache git-credential-store git-credential git-describe git-diff-files git-diff-index git-diff-tree git-diff git-difftool git-env--helper git-fast-export git-fast-import git-fetch-pack git-fetch git-fmt-merge-msg git-for-each-ref git-for-each-repo git-fsck git-gc git-get-tar-commit-id git-grep git-hash-object git-help git-hook git-index-pack git-init-db git-interpret-trailers git-log git-ls-files git-ls-remote git-ls-tree git-mailinfo git-mailsplit git-merge-base git-merge-file git-merge-index git-merge-ours git-merge-recursive git-merge-tree git-merge git-mktag git-mktree git-multi-pack-index git-mv git-name-rev git-notes git-pack-objects git-pack-redundant git-pack-refs git-patch-id git-prune-packed git-prune git-pull git-push git-range-diff git-read-tree git-rebase git-receive-pack git-reflog git-remote-ext git-remote-fd git-remote git-repack git-replace git-rerere git-reset git-rev-list git-rev-parse git-revert git-rm git-send-pack git-shortlog git-show-branch git-show-index git-show-ref git-sparse-checkout git-stash git-stripspace git-submodule--helper git-symbolic-ref git-tag git-unpack-file git-unpack-objects git-update-index git-update-ref git-update-server-info git-upload-archive git-upload-pack git-var git-verify-commit git-verify-pack git-verify-tag git-worktree git-write-tree git-cherry git-cherry-pick git-format-patch git-fsck-objects git-init git-maintenance git-merge-subtree git-restore git-show git-stage git-status git-switch git-whatchanged; do \
rm -f "$execdir/$p" && \
if test -z ""; \
then \
test -n "" && \
ln -s "$destdir_from_execdir_SQ/bin/git" "$execdir/$p" || \
{ test -z "" && \
ln "$execdir/git" "$execdir/$p" 2>/dev/null || \
ln -s "git" "$execdir/$p" 2>/dev/null || \
cp "$execdir/git" "$execdir/$p" || exit; }; \
fi \
done && \
remote_curl_aliases="git-remote-https git-remote-ftp git-remote-ftps" && \
for p in $remote_curl_aliases; do \
rm -f "$execdir/$p" && \
test -n "" && \
ln -s "git-remote-http" "$execdir/$p" || \
{ test -z "" && \
ln "$execdir/git-remote-http" "$execdir/$p" 2>/dev/null || \
ln -s "git-remote-http" "$execdir/$p" 2>/dev/null || \
cp "$execdir/git-remote-http" "$execdir/$p" || exit; } \
done
ek@apok:~/src/git ((f3875ab115...)|BISECTING)$ pushd ~/tmp
~/tmp ~/src/git
ek@apok:~/tmp$ PATH="$HOME/mygit/bin:$PATH" GIT_SSH_COMMAND='{ pid="$(ps -o ppid:1= -p "$$")"; ps -o pid:1=,cmd= -p "$pid"; awk -v RS=\\0 "/^GIT_CONFIG/ { print \" \" \$0 }" "/proc/$pid/environ"; } 1>&2; ssh' GIT_CONFIG_COUNT=1 GIT_CONFIG_KEY_0=foo.bar GIT_CONFIG_VALUE_0=baz git clone --recurse-submodules git@github.com:EliahKagan/has-nested-submodule.git
Cloning into 'has-nested-submodule'...
1086601 git clone --recurse-submodules git@github.com:EliahKagan/has-nested-submodule.git
GIT_CONFIG_COUNT=1
GIT_CONFIG_KEY_0=foo.bar
GIT_CONFIG_VALUE_0=baz
remote: Enumerating objects: 4, done.
remote: Counting objects: 100% (4/4), done.
remote: Compressing objects: 100% (4/4), done.
remote: Total 4 (delta 0), reused 4 (delta 0), pack-reused 0
Receiving objects: 100% (4/4), done.
Submodule 'has-submodule' (git@github.com:EliahKagan/has-submodule.git) registered for path 'has-submodule'
Cloning into '/home/ek/tmp/has-nested-submodule/has-submodule'...
1086642 /home/ek/mygit/libexec/git-core/git clone --no-checkout --progress --separate-git-dir /home/ek/tmp/has-nested-submodule/.git/modules/has-submodule --no-single-branch -- git@github.com:EliahKagan/has-submodule.git /home/ek/tmp/has-nested-submodule/has-submodule
GIT_CONFIG_COUNT=1
GIT_CONFIG_KEY_0=foo.bar
GIT_CONFIG_VALUE_0=baz
remote: Enumerating objects: 4, done.
remote: Counting objects: 100% (4/4), done.
remote: Compressing objects: 100% (4/4), done.
remote: Total 4 (delta 0), reused 4 (delta 0), pack-reused 0
Receiving objects: 100% (4/4), done.
Submodule path 'has-submodule': checked out '8de4a40d782ddfd338f2ada312714d60541c6f80'
Submodule 'trivial' (git@github.com:EliahKagan/trivial.git) registered for path 'has-submodule/trivial'
Cloning into '/home/ek/tmp/has-nested-submodule/has-submodule/trivial'...
1086661 /home/ek/mygit/libexec/git-core/git clone --no-checkout --progress --separate-git-dir /home/ek/tmp/has-nested-submodule/.git/modules/has-submodule/modules/trivial --no-single-branch -- git@github.com:EliahKagan/trivial.git /home/ek/tmp/has-nested-submodule/has-submodule/trivial
GIT_CONFIG_COUNT=1
GIT_CONFIG_KEY_0=foo.bar
GIT_CONFIG_VALUE_0=baz
remote: Enumerating objects: 3, done.
remote: Counting objects: 100% (3/3), done.
remote: Compressing objects: 100% (2/2), done.
remote: Total 3 (delta 0), reused 3 (delta 0), pack-reused 0
Receiving objects: 100% (3/3), done.
Submodule path 'has-submodule/trivial': checked out '656a18dc1e48e035a05a72011a62bca5f41fa07e'
ek@apok:~/tmp$ rm -rf has-nested-submodule/
ek@apok:~/tmp$ popd
~/src/git
ek@apok:~/src/git ((f3875ab115...)|BISECTING)$ rm -r ~/mygit
ek@apok:~/src/git ((f3875ab115...)|BISECTING)$ gix clean -xde
removing .depend/ (🗑️)
removing GIT-BUILD-OPTIONS (🗑️)
removing GIT-CFLAGS (🗑️)
removing GIT-LDFLAGS (🗑️)
removing GIT-PERL-DEFINES (🗑️)
removing GIT-PERL-HEADER (🗑️)
removing GIT-PREFIX (🗑️)
removing GIT-PYTHON-VARS (🗑️)
removing GIT-SCRIPT-DEFINES (🗑️)
removing GIT-USER-AGENT (🗑️)
removing GIT-VERSION-FILE (🗑️)
removing abspath.o (🗑️)
removing add-interactive.o (🗑️)
removing add-patch.o (🗑️)
removing advice.o (🗑️)
removing alias.o (🗑️)
removing alloc.o (🗑️)
removing apply.o (🗑️)
removing archive-tar.o (🗑️)
removing archive-zip.o (🗑️)
removing archive.o (🗑️)
removing attr.o (🗑️)
removing base85.o (🗑️)
removing bin-wrappers/ (🗑️)
removing bisect.o (🗑️)
removing blame.o (🗑️)
removing blob.o (🗑️)
removing bloom.o (🗑️)
removing branch.o (🗑️)
removing builtin/.depend/ (🗑️)
removing builtin/add.o (🗑️)
removing builtin/am.o (🗑️)
removing builtin/annotate.o (🗑️)
removing builtin/apply.o (🗑️)
removing builtin/archive.o (🗑️)
removing builtin/bisect--helper.o (🗑️)
removing builtin/blame.o (🗑️)
removing builtin/branch.o (🗑️)
removing builtin/bugreport.o (🗑️)
removing builtin/bundle.o (🗑️)
removing builtin/cat-file.o (🗑️)
removing builtin/check-attr.o (🗑️)
removing builtin/check-ignore.o (🗑️)
removing builtin/check-mailmap.o (🗑️)
removing builtin/check-ref-format.o (🗑️)
removing builtin/checkout--worker.o (🗑️)
removing builtin/checkout-index.o (🗑️)
removing builtin/checkout.o (🗑️)
removing builtin/clean.o (🗑️)
removing builtin/clone.o (🗑️)
removing builtin/column.o (🗑️)
removing builtin/commit-graph.o (🗑️)
removing builtin/commit-tree.o (🗑️)
removing builtin/commit.o (🗑️)
removing builtin/config.o (🗑️)
removing builtin/count-objects.o (🗑️)
removing builtin/credential-cache--daemon.o (🗑️)
removing builtin/credential-cache.o (🗑️)
removing builtin/credential-store.o (🗑️)
removing builtin/credential.o (🗑️)
removing builtin/describe.o (🗑️)
removing builtin/diff-files.o (🗑️)
removing builtin/diff-index.o (🗑️)
removing builtin/diff-tree.o (🗑️)
removing builtin/diff.o (🗑️)
removing builtin/difftool.o (🗑️)
removing builtin/env--helper.o (🗑️)
removing builtin/fast-export.o (🗑️)
removing builtin/fast-import.o (🗑️)
removing builtin/fetch-pack.o (🗑️)
removing builtin/fetch.o (🗑️)
removing builtin/fmt-merge-msg.o (🗑️)
removing builtin/for-each-ref.o (🗑️)
removing builtin/for-each-repo.o (🗑️)
removing builtin/fsck.o (🗑️)
removing builtin/gc.o (🗑️)
removing builtin/get-tar-commit-id.o (🗑️)
removing builtin/grep.o (🗑️)
removing builtin/hash-object.o (🗑️)
removing builtin/help.o (🗑️)
removing builtin/hook.o (🗑️)
removing builtin/index-pack.o (🗑️)
removing builtin/init-db.o (🗑️)
removing builtin/interpret-trailers.o (🗑️)
removing builtin/log.o (🗑️)
removing builtin/ls-files.o (🗑️)
removing builtin/ls-remote.o (🗑️)
removing builtin/ls-tree.o (🗑️)
removing builtin/mailinfo.o (🗑️)
removing builtin/mailsplit.o (🗑️)
removing builtin/merge-base.o (🗑️)
removing builtin/merge-file.o (🗑️)
removing builtin/merge-index.o (🗑️)
removing builtin/merge-ours.o (🗑️)
removing builtin/merge-recursive.o (🗑️)
removing builtin/merge-tree.o (🗑️)
removing builtin/merge.o (🗑️)
removing builtin/mktag.o (🗑️)
removing builtin/mktree.o (🗑️)
removing builtin/multi-pack-index.o (🗑️)
removing builtin/mv.o (🗑️)
removing builtin/name-rev.o (🗑️)
removing builtin/notes.o (🗑️)
removing builtin/pack-objects.o (🗑️)
removing builtin/pack-redundant.o (🗑️)
removing builtin/pack-refs.o (🗑️)
removing builtin/patch-id.o (🗑️)
removing builtin/prune-packed.o (🗑️)
removing builtin/prune.o (🗑️)
removing builtin/pull.o (🗑️)
removing builtin/push.o (🗑️)
removing builtin/range-diff.o (🗑️)
removing builtin/read-tree.o (🗑️)
removing builtin/rebase.o (🗑️)
removing builtin/receive-pack.o (🗑️)
removing builtin/reflog.o (🗑️)
removing builtin/remote-ext.o (🗑️)
removing builtin/remote-fd.o (🗑️)
removing builtin/remote.o (🗑️)
removing builtin/repack.o (🗑️)
removing builtin/replace.o (🗑️)
removing builtin/rerere.o (🗑️)
removing builtin/reset.o (🗑️)
removing builtin/rev-list.o (🗑️)
removing builtin/rev-parse.o (🗑️)
removing builtin/revert.o (🗑️)
removing builtin/rm.o (🗑️)
removing builtin/send-pack.o (🗑️)
removing builtin/shortlog.o (🗑️)
removing builtin/show-branch.o (🗑️)
removing builtin/show-index.o (🗑️)
removing builtin/show-ref.o (🗑️)
removing builtin/sparse-checkout.o (🗑️)
removing builtin/stash.o (🗑️)
removing builtin/stripspace.o (🗑️)
removing builtin/submodule--helper.o (🗑️)
removing builtin/symbolic-ref.o (🗑️)
removing builtin/tag.o (🗑️)
removing builtin/unpack-file.o (🗑️)
removing builtin/unpack-objects.o (🗑️)
removing builtin/update-index.o (🗑️)
removing builtin/update-ref.o (🗑️)
removing builtin/update-server-info.o (🗑️)
removing builtin/upload-archive.o (🗑️)
removing builtin/upload-pack.o (🗑️)
removing builtin/var.o (🗑️)
removing builtin/verify-commit.o (🗑️)
removing builtin/verify-pack.o (🗑️)
removing builtin/verify-tag.o (🗑️)
removing builtin/worktree.o (🗑️)
removing builtin/write-tree.o (🗑️)
removing bulk-checkin.o (🗑️)
removing bundle.o (🗑️)
removing cache-tree.o (🗑️)
removing cbtree.o (🗑️)
removing chdir-notify.o (🗑️)
removing checkout.o (🗑️)
removing chunk-format.o (🗑️)
removing color.o (🗑️)
removing column.o (🗑️)
removing combine-diff.o (🗑️)
removing command-list.h (🗑️)
removing commit-graph.o (🗑️)
removing commit-reach.o (🗑️)
removing commit.o (🗑️)
removing common-main.o (🗑️)
removing compat/.depend/ (🗑️)
removing compat/fopen.o (🗑️)
removing compat/linux/.depend/ (🗑️)
removing compat/linux/procinfo.o (🗑️)
removing compat/obstack.o (🗑️)
removing compat/qsort_s.o (🗑️)
removing compat/simple-ipc/.depend/ (🗑️)
removing compat/simple-ipc/ipc-shared.o (🗑️)
removing compat/simple-ipc/ipc-unix-socket.o (🗑️)
removing compat/strlcpy.o (🗑️)
removing compat/terminal.o (🗑️)
removing compat/zlib-uncompress2.o (🗑️)
removing config-list.h (🗑️)
removing config.o (🗑️)
removing connect.o (🗑️)
removing connected.o (🗑️)
removing contrib/scalar/.depend/ (🗑️)
removing convert.o (🗑️)
removing copy.o (🗑️)
removing credential.o (🗑️)
removing csum-file.o (🗑️)
removing ctype.o (🗑️)
removing daemon.o (🗑️)
removing date.o (🗑️)
removing decorate.o (🗑️)
removing delta-islands.o (🗑️)
removing diff-delta.o (🗑️)
removing diff-lib.o (🗑️)
removing diff-merges.o (🗑️)
removing diff-no-index.o (🗑️)
removing diff.o (🗑️)
removing diffcore-break.o (🗑️)
removing diffcore-delta.o (🗑️)
removing diffcore-order.o (🗑️)
removing diffcore-pickaxe.o (🗑️)
removing diffcore-rename.o (🗑️)
removing diffcore-rotate.o (🗑️)
removing dir-iterator.o (🗑️)
removing dir.o (🗑️)
removing editor.o (🗑️)
removing entry.o (🗑️)
removing environment.o (🗑️)
removing ewah/.depend/ (🗑️)
removing ewah/bitmap.o (🗑️)
removing ewah/ewah_bitmap.o (🗑️)
removing ewah/ewah_io.o (🗑️)
removing ewah/ewah_rlw.o (🗑️)
removing exec-cmd.o (🗑️)
removing fetch-negotiator.o (🗑️)
removing fetch-pack.o (🗑️)
removing fmt-merge-msg.o (🗑️)
removing fsck.o (🗑️)
removing fsmonitor.o (🗑️)
removing fuzz-commit-graph.o (🗑️)
removing fuzz-pack-headers.o (🗑️)
removing fuzz-pack-idx.o (🗑️)
removing gettext.o (🗑️)
removing git (🗑️)
removing git-add (🗑️)
removing git-add--interactive (🗑️)
removing git-am (🗑️)
removing git-annotate (🗑️)
removing git-apply (🗑️)
removing git-archimport (🗑️)
removing git-archive (🗑️)
removing git-bisect (🗑️)
removing git-bisect--helper (🗑️)
removing git-blame (🗑️)
removing git-branch (🗑️)
removing git-bugreport (🗑️)
removing git-bundle (🗑️)
removing git-cat-file (🗑️)
removing git-check-attr (🗑️)
removing git-check-ignore (🗑️)
removing git-check-mailmap (🗑️)
removing git-check-ref-format (🗑️)
removing git-checkout (🗑️)
removing git-checkout--worker (🗑️)
removing git-checkout-index (🗑️)
removing git-cherry (🗑️)
removing git-cherry-pick (🗑️)
removing git-clean (🗑️)
removing git-clone (🗑️)
removing git-column (🗑️)
removing git-commit (🗑️)
removing git-commit-graph (🗑️)
removing git-commit-tree (🗑️)
removing git-config (🗑️)
removing git-count-objects (🗑️)
removing git-credential (🗑️)
removing git-credential-cache (🗑️)
removing git-credential-cache--daemon (🗑️)
removing git-credential-store (🗑️)
removing git-cvsexportcommit (🗑️)
removing git-cvsimport (🗑️)
removing git-cvsserver (🗑️)
removing git-daemon (🗑️)
removing git-describe (🗑️)
removing git-diff (🗑️)
removing git-diff-files (🗑️)
removing git-diff-index (🗑️)
removing git-diff-tree (🗑️)
removing git-difftool (🗑️)
removing git-difftool--helper (🗑️)
removing git-env--helper (🗑️)
removing git-fast-export (🗑️)
removing git-fast-import (🗑️)
removing git-fetch (🗑️)
removing git-fetch-pack (🗑️)
removing git-filter-branch (🗑️)
removing git-fmt-merge-msg (🗑️)
removing git-for-each-ref (🗑️)
removing git-for-each-repo (🗑️)
removing git-format-patch (🗑️)
removing git-fsck (🗑️)
removing git-fsck-objects (🗑️)
removing git-gc (🗑️)
removing git-get-tar-commit-id (🗑️)
removing git-grep (🗑️)
removing git-gui/GIT-GUI-VARS (🗑️)
removing git-gui/GIT-VERSION-FILE (🗑️)
removing git-gui/git-gui (🗑️)
removing git-gui/lib/tclIndex (🗑️)
removing git-gui/po/bg.msg (🗑️)
removing git-gui/po/de.msg (🗑️)
removing git-gui/po/el.msg (🗑️)
removing git-gui/po/fr.msg (🗑️)
removing git-gui/po/hu.msg (🗑️)
removing git-gui/po/it.msg (🗑️)
removing git-gui/po/ja.msg (🗑️)
removing git-gui/po/nb.msg (🗑️)
removing git-gui/po/pt_br.msg (🗑️)
removing git-gui/po/pt_pt.msg (🗑️)
removing git-gui/po/ru.msg (🗑️)
removing git-gui/po/sv.msg (🗑️)
removing git-gui/po/vi.msg (🗑️)
removing git-gui/po/zh_cn.msg (🗑️)
removing git-hash-object (🗑️)
removing git-help (🗑️)
removing git-hook (🗑️)
removing git-http-backend (🗑️)
removing git-http-fetch (🗑️)
removing git-http-push (🗑️)
removing git-imap-send (🗑️)
removing git-index-pack (🗑️)
removing git-init (🗑️)
removing git-init-db (🗑️)
removing git-instaweb (🗑️)
removing git-interpret-trailers (🗑️)
removing git-log (🗑️)
removing git-ls-files (🗑️)
removing git-ls-remote (🗑️)
removing git-ls-tree (🗑️)
removing git-mailinfo (🗑️)
removing git-mailsplit (🗑️)
removing git-maintenance (🗑️)
removing git-merge (🗑️)
removing git-merge-base (🗑️)
removing git-merge-file (🗑️)
removing git-merge-index (🗑️)
removing git-merge-octopus (🗑️)
removing git-merge-one-file (🗑️)
removing git-merge-ours (🗑️)
removing git-merge-recursive (🗑️)
removing git-merge-resolve (🗑️)
removing git-merge-subtree (🗑️)
removing git-merge-tree (🗑️)
removing git-mergetool (🗑️)
removing git-mergetool--lib (🗑️)
removing git-mktag (🗑️)
removing git-mktree (🗑️)
removing git-multi-pack-index (🗑️)
removing git-mv (🗑️)
removing git-name-rev (🗑️)
removing git-notes (🗑️)
removing git-p4 (🗑️)
removing git-pack-objects (🗑️)
removing git-pack-redundant (🗑️)
removing git-pack-refs (🗑️)
removing git-patch-id (🗑️)
removing git-prune (🗑️)
removing git-prune-packed (🗑️)
removing git-pull (🗑️)
removing git-push (🗑️)
removing git-quiltimport (🗑️)
removing git-range-diff (🗑️)
removing git-read-tree (🗑️)
removing git-rebase (🗑️)
removing git-receive-pack (🗑️)
removing git-reflog (🗑️)
removing git-remote (🗑️)
removing git-remote-ext (🗑️)
removing git-remote-fd (🗑️)
removing git-remote-ftp (🗑️)
removing git-remote-ftps (🗑️)
removing git-remote-http (🗑️)
removing git-remote-https (🗑️)
removing git-repack (🗑️)
removing git-replace (🗑️)
removing git-request-pull (🗑️)
removing git-rerere (🗑️)
removing git-reset (🗑️)
removing git-restore (🗑️)
removing git-rev-list (🗑️)
removing git-rev-parse (🗑️)
removing git-revert (🗑️)
removing git-rm (🗑️)
removing git-send-email (🗑️)
removing git-send-pack (🗑️)
removing git-sh-i18n (🗑️)
removing git-sh-i18n--envsubst (🗑️)
removing git-sh-setup (🗑️)
removing git-shell (🗑️)
removing git-shortlog (🗑️)
removing git-show (🗑️)
removing git-show-branch (🗑️)
removing git-show-index (🗑️)
removing git-show-ref (🗑️)
removing git-sparse-checkout (🗑️)
removing git-stage (🗑️)
removing git-stash (🗑️)
removing git-status (🗑️)
removing git-stripspace (🗑️)
removing git-submodule (🗑️)
removing git-submodule--helper (🗑️)
removing git-svn (🗑️)
removing git-switch (🗑️)
removing git-symbolic-ref (🗑️)
removing git-tag (🗑️)
removing git-unpack-file (🗑️)
removing git-unpack-objects (🗑️)
removing git-update-index (🗑️)
removing git-update-ref (🗑️)
removing git-update-server-info (🗑️)
removing git-upload-archive (🗑️)
removing git-upload-pack (🗑️)
removing git-var (🗑️)
removing git-verify-commit (🗑️)
removing git-verify-pack (🗑️)
removing git-verify-tag (🗑️)
removing git-web--browse (🗑️)
removing git-whatchanged (🗑️)
removing git-worktree (🗑️)
removing git-write-tree (🗑️)
removing git.o (🗑️)
removing gitk-git/GIT-TCLTK-VARS (🗑️)
removing gitk-git/gitk-wish (🗑️)
removing gitk-git/po/bg.msg (🗑️)
removing gitk-git/po/ca.msg (🗑️)
removing gitk-git/po/de.msg (🗑️)
removing gitk-git/po/es.msg (🗑️)
removing gitk-git/po/fr.msg (🗑️)
removing gitk-git/po/hu.msg (🗑️)
removing gitk-git/po/it.msg (🗑️)
removing gitk-git/po/ja.msg (🗑️)
removing gitk-git/po/pt_br.msg (🗑️)
removing gitk-git/po/pt_pt.msg (🗑️)
removing gitk-git/po/ru.msg (🗑️)
removing gitk-git/po/sv.msg (🗑️)
removing gitk-git/po/vi.msg (🗑️)
removing gitk-git/po/zh_cn.msg (🗑️)
removing gitweb/GITWEB-BUILD-OPTIONS (🗑️)
removing gitweb/gitweb.cgi (🗑️)
removing gitweb/static/gitweb.js (🗑️)
removing gpg-interface.o (🗑️)
removing graph.o (🗑️)
removing grep.o (🗑️)
removing hash-lookup.o (🗑️)
removing hashmap.o (🗑️)
removing help.o (🗑️)
removing hex.o (🗑️)
removing hook-list.h (🗑️)
removing hook.o (🗑️)
removing http-backend.o (🗑️)
removing http-fetch.o (🗑️)
removing http-push.o (🗑️)
removing http-walker.o (🗑️)
removing http.o (🗑️)
removing ident.o (🗑️)
removing imap-send.o (🗑️)
removing json-writer.o (🗑️)
removing kwset.o (🗑️)
removing levenshtein.o (🗑️)
removing libgit.a (🗑️)
removing line-log.o (🗑️)
removing line-range.o (🗑️)
removing linear-assignment.o (🗑️)
removing list-objects-filter-options.o (🗑️)
removing list-objects-filter.o (🗑️)
removing list-objects.o (🗑️)
removing ll-merge.o (🗑️)
removing lockfile.o (🗑️)
removing log-tree.o (🗑️)
removing ls-refs.o (🗑️)
removing mailinfo.o (🗑️)
removing mailmap.o (🗑️)
removing match-trees.o (🗑️)
removing mem-pool.o (🗑️)
removing merge-blobs.o (🗑️)
removing merge-ort-wrappers.o (🗑️)
removing merge-ort.o (🗑️)
removing merge-recursive.o (🗑️)
removing merge.o (🗑️)
removing mergesort.o (🗑️)
removing midx.o (🗑️)
removing name-hash.o (🗑️)
removing negotiator/.depend/ (🗑️)
removing negotiator/default.o (🗑️)
removing negotiator/noop.o (🗑️)
removing negotiator/skipping.o (🗑️)
removing notes-cache.o (🗑️)
removing notes-merge.o (🗑️)
removing notes-utils.o (🗑️)
removing notes.o (🗑️)
removing object-file.o (🗑️)
removing object-name.o (🗑️)
removing object.o (🗑️)
removing oid-array.o (🗑️)
removing oidmap.o (🗑️)
removing oidset.o (🗑️)
removing oidtree.o (🗑️)
removing pack-bitmap-write.o (🗑️)
removing pack-bitmap.o (🗑️)
removing pack-check.o (🗑️)
removing pack-objects.o (🗑️)
removing pack-revindex.o (🗑️)
removing pack-write.o (🗑️)
removing packfile.o (🗑️)
removing pager.o (🗑️)
removing parallel-checkout.o (🗑️)
removing parse-options-cb.o (🗑️)
removing parse-options.o (🗑️)
removing patch-delta.o (🗑️)
removing patch-ids.o (🗑️)
removing path.o (🗑️)
removing pathspec.o (🗑️)
removing perl/build/ (🗑️)
removing pkt-line.o (🗑️)
removing po/build/ (🗑️)
removing preload-index.o (🗑️)
removing pretty.o (🗑️)
removing prio-queue.o (🗑️)
removing progress.o (🗑️)
removing promisor-remote.o (🗑️)
removing prompt.o (🗑️)
removing protocol-caps.o (🗑️)
removing protocol.o (🗑️)
removing prune-packed.o (🗑️)
removing quote.o (🗑️)
removing range-diff.o (🗑️)
removing reachable.o (🗑️)
removing read-cache.o (🗑️)
removing rebase-interactive.o (🗑️)
removing rebase.o (🗑️)
removing ref-filter.o (🗑️)
removing reflog-walk.o (🗑️)
removing refs.o (🗑️)
removing refs/.depend/ (🗑️)
removing refs/debug.o (🗑️)
removing refs/files-backend.o (🗑️)
removing refs/iterator.o (🗑️)
removing refs/packed-backend.o (🗑️)
removing refs/ref-cache.o (🗑️)
removing refspec.o (🗑️)
removing reftable/.depend/ (🗑️)
removing reftable/basics.o (🗑️)
removing reftable/basics_test.o (🗑️)
removing reftable/block.o (🗑️)
removing reftable/block_test.o (🗑️)
removing reftable/blocksource.o (🗑️)
removing reftable/dump.o (🗑️)
removing reftable/error.o (🗑️)
removing reftable/generic.o (🗑️)
removing reftable/iter.o (🗑️)
removing reftable/libreftable.a (🗑️)
removing reftable/libreftable_test.a (🗑️)
removing reftable/merged.o (🗑️)
removing reftable/merged_test.o (🗑️)
removing reftable/pq.o (🗑️)
removing reftable/pq_test.o (🗑️)
removing reftable/publicbasics.o (🗑️)
removing reftable/reader.o (🗑️)
removing reftable/readwrite_test.o (🗑️)
removing reftable/record.o (🗑️)
removing reftable/record_test.o (🗑️)
removing reftable/refname.o (🗑️)
removing reftable/refname_test.o (🗑️)
removing reftable/stack.o (🗑️)
removing reftable/stack_test.o (🗑️)
removing reftable/test_framework.o (🗑️)
removing reftable/tree.o (🗑️)
removing reftable/tree_test.o (🗑️)
removing reftable/writer.o (🗑️)
removing remote-curl.o (🗑️)
removing remote.o (🗑️)
removing replace-object.o (🗑️)
removing repo-settings.o (🗑️)
removing repository.o (🗑️)
removing rerere.o (🗑️)
removing reset.o (🗑️)
removing resolve-undo.o (🗑️)
removing revision.o (🗑️)
removing run-command.o (🗑️)
removing send-pack.o (🗑️)
removing sequencer.o (🗑️)
removing serve.o (🗑️)
removing server-info.o (🗑️)
removing setup.o (🗑️)
removing sh-i18n--envsubst.o (🗑️)
removing sha1dc/.depend/ (🗑️)
removing sha1dc/sha1.o (🗑️)
removing sha1dc/ubc_check.o (🗑️)
removing sha1dc_git.o (🗑️)
removing sha256/block/.depend/ (🗑️)
removing sha256/block/sha256.o (🗑️)
removing shallow.o (🗑️)
removing shell.o (🗑️)
removing sideband.o (🗑️)
removing sigchain.o (🗑️)
removing sparse-index.o (🗑️)
removing split-index.o (🗑️)
removing stable-qsort.o (🗑️)
removing strbuf.o (🗑️)
removing streaming.o (🗑️)
removing string-list.o (🗑️)
removing strmap.o (🗑️)
removing strvec.o (🗑️)
removing sub-process.o (🗑️)
removing submodule-config.o (🗑️)
removing submodule.o (🗑️)
removing symlinks.o (🗑️)
removing t/helper/.depend/ (🗑️)
removing t/helper/test-advise.o (🗑️)
removing t/helper/test-bitmap.o (🗑️)
removing t/helper/test-bloom.o (🗑️)
removing t/helper/test-chmtime.o (🗑️)
removing t/helper/test-config.o (🗑️)
removing t/helper/test-crontab.o (🗑️)
removing t/helper/test-csprng.o (🗑️)
removing t/helper/test-ctype.o (🗑️)
removing t/helper/test-date.o (🗑️)
removing t/helper/test-delta.o (🗑️)
removing t/helper/test-dir-iterator.o (🗑️)
removing t/helper/test-drop-caches.o (🗑️)
removing t/helper/test-dump-cache-tree.o (🗑️)
removing t/helper/test-dump-fsmonitor.o (🗑️)
removing t/helper/test-dump-split-index.o (🗑️)
removing t/helper/test-dump-untracked-cache.o (🗑️)
removing t/helper/test-example-decorate.o (🗑️)
removing t/helper/test-fake-ssh (🗑️)
removing t/helper/test-fake-ssh.o (🗑️)
removing t/helper/test-fast-rebase.o (🗑️)
removing t/helper/test-genrandom.o (🗑️)
removing t/helper/test-genzeros.o (🗑️)
removing t/helper/test-getcwd.o (🗑️)
removing t/helper/test-hash-speed.o (🗑️)
removing t/helper/test-hash.o (🗑️)
removing t/helper/test-hashmap.o (🗑️)
removing t/helper/test-index-version.o (🗑️)
removing t/helper/test-json-writer.o (🗑️)
removing t/helper/test-lazy-init-name-hash.o (🗑️)
removing t/helper/test-match-trees.o (🗑️)
removing t/helper/test-mergesort.o (🗑️)
removing t/helper/test-mktemp.o (🗑️)
removing t/helper/test-oid-array.o (🗑️)
removing t/helper/test-oidmap.o (🗑️)
removing t/helper/test-oidtree.o (🗑️)
removing t/helper/test-online-cpus.o (🗑️)
removing t/helper/test-parse-options.o (🗑️)
removing t/helper/test-parse-pathspec-file.o (🗑️)
removing t/helper/test-partial-clone.o (🗑️)
removing t/helper/test-path-utils.o (🗑️)
removing t/helper/test-pcre2-config.o (🗑️)
removing t/helper/test-pkt-line.o (🗑️)
removing t/helper/test-prio-queue.o (🗑️)
removing t/helper/test-proc-receive.o (🗑️)
removing t/helper/test-progress.o (🗑️)
removing t/helper/test-reach.o (🗑️)
removing t/helper/test-read-cache.o (🗑️)
removing t/helper/test-read-graph.o (🗑️)
removing t/helper/test-read-midx.o (🗑️)
removing t/helper/test-ref-store.o (🗑️)
removing t/helper/test-reftable.o (🗑️)
removing t/helper/test-regex.o (🗑️)
removing t/helper/test-repository.o (🗑️)
removing t/helper/test-revision-walking.o (🗑️)
removing t/helper/test-run-command.o (🗑️)
removing t/helper/test-scrap-cache-tree.o (🗑️)
removing t/helper/test-serve-v2.o (🗑️)
removing t/helper/test-sha1.o (🗑️)
removing t/helper/test-sha256.o (🗑️)
removing t/helper/test-sigchain.o (🗑️)
removing t/helper/test-simple-ipc.o (🗑️)
removing t/helper/test-strcmp-offset.o (🗑️)
removing t/helper/test-string-list.o (🗑️)
removing t/helper/test-submodule-config.o (🗑️)
removing t/helper/test-submodule-nested-repo-config.o (🗑️)
removing t/helper/test-subprocess.o (🗑️)
removing t/helper/test-tool (🗑️)
removing t/helper/test-tool.o (🗑️)
removing t/helper/test-trace2.o (🗑️)
removing t/helper/test-urlmatch-normalization.o (🗑️)
removing t/helper/test-userdiff.o (🗑️)
removing t/helper/test-wildmatch.o (🗑️)
removing t/helper/test-windows-named-pipe.o (🗑️)
removing t/helper/test-write-cache.o (🗑️)
removing t/helper/test-xml-encode.o (🗑️)
removing tag.o (🗑️)
removing tempfile.o (🗑️)
removing templates/blt/ (🗑️)
removing templates/boilerplates.made (🗑️)
removing thread-utils.o (🗑️)
removing tmp-objdir.o (🗑️)
removing trace.o (🗑️)
removing trace2.o (🗑️)
removing trace2/.depend/ (🗑️)
removing trace2/tr2_cfg.o (🗑️)
removing trace2/tr2_cmd_name.o (🗑️)
removing trace2/tr2_dst.o (🗑️)
removing trace2/tr2_sid.o (🗑️)
removing trace2/tr2_sysenv.o (🗑️)
removing trace2/tr2_tbuf.o (🗑️)
removing trace2/tr2_tgt_event.o (🗑️)
removing trace2/tr2_tgt_normal.o (🗑️)
removing trace2/tr2_tgt_perf.o (🗑️)
removing trace2/tr2_tls.o (🗑️)
removing trailer.o (🗑️)
removing transport-helper.o (🗑️)
removing transport.o (🗑️)
removing tree-diff.o (🗑️)
removing tree-walk.o (🗑️)
removing tree.o (🗑️)
removing unix-socket.o (🗑️)
removing unix-stream-server.o (🗑️)
removing unpack-trees.o (🗑️)
removing upload-pack.o (🗑️)
removing url.o (🗑️)
removing urlmatch.o (🗑️)
removing usage.o (🗑️)
removing userdiff.o (🗑️)
removing utf8.o (🗑️)
removing varint.o (🗑️)
removing version.o (🗑️)
removing versioncmp.o (🗑️)
removing walker.o (🗑️)
removing wildmatch.o (🗑️)
removing worktree.o (🗑️)
removing wrapper.o (🗑️)
removing write-or-die.o (🗑️)
removing ws.o (🗑️)
removing wt-status.o (🗑️)
removing xdiff-interface.o (🗑️)
removing xdiff/.depend/ (🗑️)
removing xdiff/lib.a (🗑️)
removing xdiff/xdiffi.o (🗑️)
removing xdiff/xemit.o (🗑️)
removing xdiff/xhistogram.o (🗑️)
removing xdiff/xmerge.o (🗑️)
removing xdiff/xpatience.o (🗑️)
removing xdiff/xprepare.o (🗑️)
removing xdiff/xutils.o (🗑️)
removing zlib.o (🗑️)
ek@apok:~/src/git ((f3875ab115...)|BISECTING)$ git bisect new
Bisecting: 0 revisions left to test after this (roughly 0 steps)
[b3c5f5cb04854b56b39a40696c366053c8f09b58] submodule: move core cmd_update() logic to C
ek@apok:~/src/git ((b3c5f5cb04...)|BISECTING)$ make prefix="$HOME/mygit" -j5
GIT_VERSION = 2.35.1.520.gb3c5f5cb04
* new build flags
CC fuzz-commit-graph.o
CC fuzz-pack-headers.o
CC fuzz-pack-idx.o
CC daemon.o
CC abspath.o
CC common-main.o
* new link flags
CC add-interactive.o
CC add-patch.o
CC advice.o
CC alias.o
CC alloc.o
CC apply.o
CC archive-tar.o
CC archive-zip.o
CC archive.o
* new prefix flags
CC base85.o
CC bisect.o
CC blame.o
CC blob.o
CC bloom.o
CC branch.o
CC bulk-checkin.o
CC bundle.o
CC cache-tree.o
CC cbtree.o
CC chdir-notify.o
CC checkout.o
CC chunk-format.o
CC color.o
CC column.o
CC combine-diff.o
CC commit-graph.o
CC commit-reach.o
CC commit.o
CC compat/obstack.o
CC compat/terminal.o
CC compat/zlib-uncompress2.o
CC config.o
CC connect.o
CC connected.o
CC convert.o
CC copy.o
CC credential.o
CC csum-file.o
CC ctype.o
CC date.o
CC decorate.o
CC delta-islands.o
CC diff-delta.o
CC diff-merges.o
CC diff-lib.o
CC diff-no-index.o
CC diff.o
CC diffcore-break.o
CC diffcore-delta.o
CC diffcore-order.o
CC diffcore-pickaxe.o
CC diffcore-rename.o
CC diffcore-rotate.o
CC dir-iterator.o
CC dir.o
CC editor.o
CC entry.o
CC environment.o
CC ewah/bitmap.o
CC ewah/ewah_bitmap.o
CC ewah/ewah_io.o
CC ewah/ewah_rlw.o
CC exec-cmd.o
CC fetch-negotiator.o
CC fetch-pack.o
CC fmt-merge-msg.o
CC fsck.o
CC fsmonitor.o
CC gettext.o
CC gpg-interface.o
CC graph.o
CC grep.o
CC hash-lookup.o
CC hashmap.o
GEN command-list.h
CC hex.o
CC hook.o
CC ident.o
CC json-writer.o
CC kwset.o
CC levenshtein.o
CC line-log.o
CC line-range.o
CC linear-assignment.o
CC list-objects-filter-options.o
CC list-objects-filter.o
CC list-objects.o
CC ll-merge.o
CC lockfile.o
CC log-tree.o
CC ls-refs.o
CC mailinfo.o
CC mailmap.o
CC match-trees.o
CC mem-pool.o
CC merge-blobs.o
CC merge-ort.o
CC merge-ort-wrappers.o
CC merge-recursive.o
CC merge.o
CC mergesort.o
CC midx.o
CC name-hash.o
CC negotiator/default.o
CC negotiator/noop.o
CC negotiator/skipping.o
CC notes-cache.o
CC notes-merge.o
CC notes-utils.o
CC notes.o
CC object-file.o
CC object-name.o
CC object.o
CC oid-array.o
CC oidmap.o
CC oidset.o
CC oidtree.o
CC pack-bitmap-write.o
CC pack-bitmap.o
CC pack-check.o
CC pack-objects.o
CC pack-revindex.o
CC pack-write.o
CC packfile.o
CC pager.o
CC parallel-checkout.o
CC parse-options-cb.o
CC parse-options.o
CC patch-delta.o
CC patch-ids.o
CC path.o
CC pathspec.o
CC pkt-line.o
CC preload-index.o
CC pretty.o
CC prio-queue.o
CC progress.o
CC promisor-remote.o
CC prompt.o
CC protocol.o
CC protocol-caps.o
CC prune-packed.o
CC quote.o
CC range-diff.o
CC reachable.o
CC read-cache.o
CC rebase-interactive.o
CC rebase.o
CC ref-filter.o
CC reflog-walk.o
CC refs.o
CC refs/debug.o
CC refs/files-backend.o
CC refs/iterator.o
CC refs/packed-backend.o
CC refs/ref-cache.o
CC refspec.o
CC remote.o
CC replace-object.o
CC repo-settings.o
CC repository.o
CC rerere.o
CC reset.o
CC resolve-undo.o
CC revision.o
CC run-command.o
CC send-pack.o
CC sequencer.o
CC serve.o
CC server-info.o
CC setup.o
CC shallow.o
CC sideband.o
CC sigchain.o
CC sparse-index.o
CC split-index.o
CC stable-qsort.o
CC strbuf.o
CC streaming.o
CC string-list.o
CC strmap.o
CC strvec.o
CC sub-process.o
CC submodule-config.o
CC submodule.o
CC symlinks.o
CC tag.o
CC tempfile.o
CC thread-utils.o
CC tmp-objdir.o
CC trace.o
CC trace2.o
CC trace2/tr2_cfg.o
CC trace2/tr2_cmd_name.o
CC trace2/tr2_dst.o
CC trace2/tr2_sid.o
CC trace2/tr2_sysenv.o
CC trace2/tr2_tbuf.o
CC trace2/tr2_tgt_event.o
CC trace2/tr2_tgt_normal.o
CC trace2/tr2_tgt_perf.o
CC trace2/tr2_tls.o
CC trailer.o
CC transport-helper.o
CC transport.o
CC tree-diff.o
CC tree-walk.o
CC tree.o
CC unpack-trees.o
CC upload-pack.o
CC url.o
CC urlmatch.o
CC usage.o
CC userdiff.o
CC utf8.o
CC varint.o
CC versioncmp.o
CC walker.o
CC wildmatch.o
CC worktree.o
CC wrapper.o
CC write-or-die.o
CC ws.o
CC wt-status.o
CC xdiff-interface.o
CC zlib.o
CC unix-socket.o
CC unix-stream-server.o
CC compat/simple-ipc/ipc-shared.o
CC compat/simple-ipc/ipc-unix-socket.o
CC sha1dc_git.o
CC sha1dc/sha1.o
CC sha1dc/ubc_check.o
CC sha256/block/sha256.o
CC compat/linux/procinfo.o
CC compat/fopen.o
CC compat/strlcpy.o
CC compat/qsort_s.o
CC xdiff/xdiffi.o
CC xdiff/xemit.o
CC xdiff/xhistogram.o
CC xdiff/xmerge.o
CC xdiff/xpatience.o
CC xdiff/xprepare.o
CC xdiff/xutils.o
CC reftable/basics.o
CC reftable/error.o
CC reftable/block.o
CC reftable/blocksource.o
CC reftable/iter.o
CC reftable/publicbasics.o
CC reftable/merged.o
CC reftable/pq.o
CC reftable/reader.o
CC reftable/record.o
CC reftable/refname.o
CC reftable/generic.o
CC reftable/stack.o
CC reftable/tree.o
CC reftable/writer.o
CC http-backend.o
CC imap-send.o
CC http.o
CC sh-i18n--envsubst.o
CC shell.o
CC http-walker.o
CC http-fetch.o
CC http-push.o
CC remote-curl.o
* new script parameters
* new perl-specific parameters
* new Python interpreter location
GEN git-instaweb
CC git.o
CC builtin/add.o
CC builtin/am.o
CC builtin/annotate.o
CC builtin/apply.o
CC builtin/archive.o
CC builtin/bisect--helper.o
CC builtin/blame.o
CC builtin/branch.o
GEN hook-list.h
CC builtin/bundle.o
CC builtin/cat-file.o
CC builtin/check-attr.o
CC builtin/check-ignore.o
CC builtin/check-mailmap.o
CC builtin/check-ref-format.o
CC builtin/checkout--worker.o
CC builtin/checkout-index.o
CC builtin/checkout.o
CC builtin/clean.o
CC builtin/clone.o
CC builtin/column.o
CC builtin/commit-graph.o
CC builtin/commit-tree.o
CC builtin/commit.o
CC builtin/config.o
CC builtin/count-objects.o
CC builtin/credential-cache--daemon.o
CC builtin/credential-cache.o
CC builtin/credential-store.o
CC builtin/credential.o
CC builtin/describe.o
CC builtin/diff-files.o
CC builtin/diff-index.o
CC builtin/diff-tree.o
CC builtin/diff.o
CC builtin/difftool.o
CC builtin/env--helper.o
CC builtin/fast-export.o
CC builtin/fast-import.o
CC builtin/fetch-pack.o
CC builtin/fetch.o
CC builtin/fmt-merge-msg.o
CC builtin/for-each-ref.o
CC builtin/for-each-repo.o
CC builtin/fsck.o
CC builtin/gc.o
CC builtin/get-tar-commit-id.o
CC builtin/grep.o
CC builtin/hash-object.o
GEN config-list.h
CC builtin/hook.o
CC builtin/index-pack.o
CC builtin/init-db.o
CC builtin/interpret-trailers.o
CC builtin/log.o
CC builtin/ls-files.o
CC builtin/ls-remote.o
CC builtin/ls-tree.o
CC builtin/mailinfo.o
CC builtin/mailsplit.o
CC builtin/merge-base.o
CC builtin/merge-file.o
CC builtin/merge-index.o
CC builtin/merge-ours.o
CC builtin/merge-recursive.o
CC builtin/merge-tree.o
CC builtin/merge.o
CC builtin/mktag.o
CC builtin/mktree.o
CC builtin/multi-pack-index.o
CC builtin/mv.o
CC builtin/name-rev.o
CC builtin/notes.o
CC builtin/pack-objects.o
CC builtin/pack-redundant.o
CC builtin/pack-refs.o
CC builtin/patch-id.o
CC builtin/prune-packed.o
CC builtin/prune.o
CC builtin/pull.o
CC builtin/push.o
CC builtin/range-diff.o
CC builtin/read-tree.o
CC builtin/rebase.o
CC builtin/receive-pack.o
CC builtin/reflog.o
CC builtin/remote-ext.o
CC builtin/remote-fd.o
CC builtin/remote.o
CC builtin/repack.o
CC builtin/replace.o
CC builtin/rerere.o
CC builtin/reset.o
CC builtin/rev-list.o
CC builtin/rev-parse.o
CC builtin/revert.o
CC builtin/rm.o
CC builtin/send-pack.o
CC builtin/shortlog.o
CC builtin/show-branch.o
CC builtin/show-index.o
CC builtin/show-ref.o
CC builtin/sparse-checkout.o
CC builtin/stash.o
CC builtin/stripspace.o
CC builtin/submodule--helper.o
CC builtin/symbolic-ref.o
CC builtin/tag.o
CC builtin/unpack-file.o
CC builtin/unpack-objects.o
CC builtin/update-index.o
CC builtin/update-ref.o
CC builtin/update-server-info.o
CC builtin/upload-archive.o
CC builtin/upload-pack.o
CC builtin/var.o
CC builtin/verify-commit.o
CC builtin/verify-pack.o
CC builtin/verify-tag.o
CC builtin/worktree.o
CC builtin/write-tree.o
GEN git-mergetool--lib
GEN git-sh-i18n
GEN git-sh-setup
CC attr.o
CC help.o
CC version.o
AR xdiff/lib.a
AR reftable/libreftable.a
GEN git-bisect
GEN git-difftool--helper
GEN git-filter-branch
GEN git-merge-octopus
GEN git-merge-one-file
GEN git-merge-resolve
GEN git-mergetool
GEN git-quiltimport
GEN git-request-pull
GEN git-submodule
GEN git-web--browse
GEN GIT-PERL-HEADER
GEN git-p4
CC builtin/bugreport.o
CC builtin/help.o
GEN git-add--interactive
GEN git-archimport
GEN git-cvsexportcommit
GEN git-cvsimport
GEN git-cvsserver
GEN git-send-email
GEN git-svn
AR libgit.a
LINK git-daemon
LINK git-http-backend
LINK git-imap-send
LINK git-sh-i18n--envsubst
LINK git-shell
LINK git-http-fetch
LINK git-http-push
LINK git-remote-http
LINK git
LN/CP git-remote-https
LN/CP git-remote-ftp
LN/CP git-remote-ftps
BUILTIN git-add
BUILTIN git-am
BUILTIN git-apply
BUILTIN git-annotate
BUILTIN git-archive
BUILTIN git-bisect--helper
BUILTIN git-blame
BUILTIN git-branch
BUILTIN git-bugreport
BUILTIN git-bundle
BUILTIN git-cat-file
BUILTIN git-check-attr
BUILTIN git-check-ignore
BUILTIN git-check-mailmap
BUILTIN git-checkout--worker
BUILTIN git-check-ref-format
BUILTIN git-checkout-index
BUILTIN git-checkout
BUILTIN git-clean
BUILTIN git-clone
BUILTIN git-column
BUILTIN git-commit-graph
BUILTIN git-commit-tree
BUILTIN git-commit
BUILTIN git-config
BUILTIN git-credential-cache--daemon
BUILTIN git-count-objects
BUILTIN git-credential-cache
BUILTIN git-credential-store
BUILTIN git-credential
BUILTIN git-describe
BUILTIN git-diff-files
BUILTIN git-diff-tree
BUILTIN git-diff
BUILTIN git-diff-index
BUILTIN git-difftool
BUILTIN git-env--helper
BUILTIN git-fast-import
BUILTIN git-fast-export
BUILTIN git-fetch-pack
BUILTIN git-fetch
BUILTIN git-fmt-merge-msg
BUILTIN git-for-each-ref
BUILTIN git-for-each-repo
BUILTIN git-fsck
BUILTIN git-gc
BUILTIN git-get-tar-commit-id
BUILTIN git-grep
BUILTIN git-hash-object
BUILTIN git-help
BUILTIN git-hook
BUILTIN git-index-pack
BUILTIN git-interpret-trailers
BUILTIN git-log
BUILTIN git-init-db
BUILTIN git-ls-files
BUILTIN git-ls-remote
BUILTIN git-ls-tree
BUILTIN git-mailinfo
BUILTIN git-mailsplit
BUILTIN git-merge-base
BUILTIN git-merge-file
BUILTIN git-merge-index
BUILTIN git-merge-ours
BUILTIN git-merge-recursive
BUILTIN git-merge-tree
BUILTIN git-merge
BUILTIN git-mktag
BUILTIN git-mktree
BUILTIN git-multi-pack-index
BUILTIN git-mv
BUILTIN git-name-rev
BUILTIN git-notes
BUILTIN git-pack-objects
BUILTIN git-pack-redundant
BUILTIN git-pack-refs
BUILTIN git-patch-id
BUILTIN git-prune-packed
BUILTIN git-prune
BUILTIN git-pull
BUILTIN git-push
BUILTIN git-range-diff
BUILTIN git-read-tree
BUILTIN git-rebase
BUILTIN git-receive-pack
BUILTIN git-reflog
BUILTIN git-remote-ext
BUILTIN git-remote
BUILTIN git-remote-fd
BUILTIN git-repack
BUILTIN git-replace
BUILTIN git-rerere
BUILTIN git-reset
BUILTIN git-rev-list
BUILTIN git-rev-parse
BUILTIN git-revert
BUILTIN git-rm
BUILTIN git-send-pack
BUILTIN git-shortlog
BUILTIN git-show-index
BUILTIN git-show-ref
BUILTIN git-show-branch
BUILTIN git-sparse-checkout
BUILTIN git-stash
BUILTIN git-stripspace
BUILTIN git-submodule--helper
BUILTIN git-symbolic-ref
BUILTIN git-tag
BUILTIN git-unpack-file
BUILTIN git-unpack-objects
BUILTIN git-update-index
BUILTIN git-update-ref
BUILTIN git-update-server-info
BUILTIN git-upload-archive
BUILTIN git-upload-pack
BUILTIN git-var
BUILTIN git-verify-commit
BUILTIN git-verify-pack
BUILTIN git-verify-tag
BUILTIN git-write-tree
BUILTIN git-worktree
BUILTIN git-cherry
BUILTIN git-cherry-pick
BUILTIN git-fsck-objects
BUILTIN git-init
BUILTIN git-format-patch
BUILTIN git-maintenance
BUILTIN git-merge-subtree
BUILTIN git-restore
BUILTIN git-show
BUILTIN git-stage
BUILTIN git-switch
BUILTIN git-status
BUILTIN git-whatchanged
SUBDIR git-gui
GITGUI_VERSION = 0.21.0.99.gdf4f9
* new locations or Tcl/Tk interpreter
MSGFMT po/bg.msg MSGFMT po/de.msg MSGFMT po/el.msg MSGFMT po/fr.msg MSGFMT po/hu.msg 579 translated.
565 translated.
520 translated.
MSGFMT po/it.msg MSGFMT po/ja.msg 381 translated, 4 fuzzy, 6 untranslated.
MSGFMT po/nb.msg MSGFMT po/pt_br.msg 514 translated.
546 translated, 1 untranslated.
519 translated, 1 untranslated.
474 translated, 39 untranslated.
MSGFMT po/ru.msg MSGFMT po/pt_pt.msg MSGFMT po/sv.msg MSGFMT po/vi.msg 520 translated.
MSGFMT po/zh_cn.msg 550 translated.
547 translated.
GEN git-gui
INDEX lib/
366 translated, 7 fuzzy, 17 untranslated.
543 translated.
579 translated.
SUBDIR gitk-git
Generating catalog po/bg.msg
msgfmt --statistics --tcl po/bg.po -l bg -d po/
* new Tcl/Tk interpreter location
Generating catalog po/es.msg
msgfmt --statistics --tcl po/es.po -l es -d po/
Generating catalog po/ca.msg
Generating catalog po/de.msg
msgfmt --statistics --tcl po/de.po -l de -d po/
Generating catalog po/fr.msg
msgfmt --statistics --tcl po/ca.po -l ca -d po/
msgfmt --statistics --tcl po/fr.po -l fr -d po/
184 translated messages317 translated messages307 translated messages.
.
, 46 fuzzy translations, 77 untranslated messages.
Generating catalog po/hu.msg
Generating catalog po/it.msg
msgfmt --statistics --tcl po/hu.po -l hu -d po/
307 translated messages.
Generating catalog po/ja.msg
msgfmt --statistics --tcl po/it.po -l it -d po/
msgfmt --statistics --tcl po/ja.po -l ja -d po/
311 translated messages.
Generating catalog po/pt_br.msg
msgfmt --statistics --tcl po/pt_br.po -l pt_br -d po/
277 translated messages, 18 fuzzy translations, 12 untranslated messages.
Generating catalog po/pt_pt.msg
274 translated messages, 17 fuzzy translations, 16 untranslated messages.
msgfmt --statistics --tcl po/pt_pt.po -l pt_pt -d po/
311 translated messages.
Generating catalog po/ru.msg
msgfmt --statistics --tcl po/ru.po -l ru -d po/
Generating catalog po/sv.msg
msgfmt --statistics --tcl po/sv.po -l sv -d po/
311 translated messages.
Generating catalog po/vi.msg
msgfmt --statistics --tcl po/vi.po -l vi -d po/
279 translated messages, 16 fuzzy translations, 12 untranslated messages.
Generating catalog po/zh_cn.msg
msgfmt --statistics --tcl po/zh_cn.po -l zh_cn -d po/
GEN gitk-wish
317 translated messages.
311 translated messages.
307 translated messages.
317 translated messages.
SUBDIR templates
MKDIR -p po/build/locale/bg/LC_MESSAGES
MSGFMT po/build/locale/bg/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/ca/LC_MESSAGES
MKDIR -p po/build/locale/de/LC_MESSAGES
MSGFMT po/build/locale/ca/LC_MESSAGES/git.mo
MSGFMT po/build/locale/de/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/el/LC_MESSAGES
MSGFMT po/build/locale/el/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/es/LC_MESSAGES
MSGFMT po/build/locale/es/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/fr/LC_MESSAGES
MSGFMT po/build/locale/fr/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/id/LC_MESSAGES
MSGFMT po/build/locale/id/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/is/LC_MESSAGES
MSGFMT po/build/locale/is/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/it/LC_MESSAGES
MSGFMT po/build/locale/it/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/ko/LC_MESSAGES
MSGFMT po/build/locale/ko/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/pl/LC_MESSAGES
MSGFMT po/build/locale/pl/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/pt_PT/LC_MESSAGES
MSGFMT po/build/locale/pt_PT/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/ru/LC_MESSAGES
MSGFMT po/build/locale/ru/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/sv/LC_MESSAGES
MSGFMT po/build/locale/sv/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/tr/LC_MESSAGES
MSGFMT po/build/locale/tr/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/vi/LC_MESSAGES
MSGFMT po/build/locale/vi/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/zh_CN/LC_MESSAGES
MSGFMT po/build/locale/zh_CN/LC_MESSAGES/git.mo
MKDIR -p po/build/locale/zh_TW/LC_MESSAGES
MSGFMT po/build/locale/zh_TW/LC_MESSAGES/git.mo
MKDIR -p perl/build/lib
GEN perl/build/lib/Git.pm
MKDIR -p perl/build/lib/Git
GEN perl/build/lib/Git/IndexInfo.pm
GEN perl/build/lib/Git/LoadCPAN.pm
GEN perl/build/lib/Git/Packet.pm
GEN perl/build/lib/Git/I18N.pm
GEN perl/build/lib/Git/SVN.pm
MKDIR -p perl/build/lib/Git/LoadCPAN
GEN perl/build/lib/Git/LoadCPAN/Error.pm
MKDIR -p perl/build/lib/Git/SVN
GEN perl/build/lib/Git/SVN/Fetcher.pm
GEN perl/build/lib/Git/SVN/Log.pm
GEN perl/build/lib/Git/SVN/GlobSpec.pm
GEN perl/build/lib/Git/SVN/Editor.pm
GEN perl/build/lib/Git/SVN/Migration.pm
GEN perl/build/lib/Git/SVN/Ra.pm
GEN perl/build/lib/Git/SVN/Prompt.pm
GEN perl/build/lib/Git/SVN/Utils.pm
MKDIR -p perl/build/lib/Git/LoadCPAN/Mail
GEN perl/build/lib/Git/LoadCPAN/Mail/Address.pm
MKDIR -p perl/build/lib/Git/SVN/Memoize
GEN perl/build/lib/Git/SVN/Memoize/YAML.pm
MKDIR -p perl/build/lib/FromCPAN
GEN perl/build/lib/FromCPAN/Error.pm
MKDIR -p perl/build/lib/FromCPAN/Mail
GEN perl/build/lib/FromCPAN/Mail/Address.pm
CC t/helper/test-fake-ssh.o
CC reftable/basics_test.o
CC reftable/block_test.o
CC reftable/dump.o
CC reftable/merged_test.o
CC reftable/pq_test.o
CC reftable/record_test.o
CC reftable/readwrite_test.o
CC reftable/refname_test.o
CC reftable/stack_test.o
CC reftable/test_framework.o
CC reftable/tree_test.o
CC t/helper/test-tool.o
CC t/helper/test-advise.o
CC t/helper/test-bitmap.o
CC t/helper/test-bloom.o
CC t/helper/test-chmtime.o
CC t/helper/test-config.o
CC t/helper/test-crontab.o
CC t/helper/test-csprng.o
CC t/helper/test-ctype.o
CC t/helper/test-date.o
CC t/helper/test-delta.o
CC t/helper/test-dir-iterator.o
CC t/helper/test-drop-caches.o
CC t/helper/test-dump-cache-tree.o
CC t/helper/test-dump-fsmonitor.o
CC t/helper/test-dump-split-index.o
CC t/helper/test-dump-untracked-cache.o
CC t/helper/test-example-decorate.o
CC t/helper/test-fast-rebase.o
CC t/helper/test-genrandom.o
CC t/helper/test-genzeros.o
CC t/helper/test-getcwd.o
CC t/helper/test-hash-speed.o
CC t/helper/test-hash.o
CC t/helper/test-hashmap.o
CC t/helper/test-index-version.o
CC t/helper/test-json-writer.o
CC t/helper/test-lazy-init-name-hash.o
CC t/helper/test-match-trees.o
CC t/helper/test-mergesort.o
CC t/helper/test-mktemp.o
CC t/helper/test-oid-array.o
CC t/helper/test-oidmap.o
CC t/helper/test-oidtree.o
CC t/helper/test-online-cpus.o
CC t/helper/test-parse-options.o
CC t/helper/test-parse-pathspec-file.o
CC t/helper/test-partial-clone.o
CC t/helper/test-path-utils.o
CC t/helper/test-pcre2-config.o
CC t/helper/test-pkt-line.o
CC t/helper/test-prio-queue.o
CC t/helper/test-proc-receive.o
CC t/helper/test-progress.o
CC t/helper/test-reach.o
CC t/helper/test-read-cache.o
CC t/helper/test-read-graph.o
CC t/helper/test-read-midx.o
CC t/helper/test-ref-store.o
CC t/helper/test-reftable.o
CC t/helper/test-regex.o
CC t/helper/test-repository.o
CC t/helper/test-revision-walking.o
CC t/helper/test-run-command.o
CC t/helper/test-scrap-cache-tree.o
CC t/helper/test-serve-v2.o
CC t/helper/test-sha1.o
CC t/helper/test-sha256.o
CC t/helper/test-sigchain.o
CC t/helper/test-simple-ipc.o
CC t/helper/test-strcmp-offset.o
CC t/helper/test-string-list.o
CC t/helper/test-submodule-config.o
CC t/helper/test-submodule-nested-repo-config.o
CC t/helper/test-subprocess.o
CC t/helper/test-trace2.o
CC t/helper/test-urlmatch-normalization.o
CC t/helper/test-userdiff.o
CC t/helper/test-wildmatch.o
CC t/helper/test-windows-named-pipe.o
CC t/helper/test-write-cache.o
CC t/helper/test-xml-encode.o
MKDIR -p bin-wrappers
GEN bin-wrappers/git
GEN bin-wrappers/git-receive-pack
GEN bin-wrappers/git-shell
GEN bin-wrappers/git-upload-archive
GEN bin-wrappers/git-upload-pack
GEN bin-wrappers/git-cvsserver
GEN bin-wrappers/test-fake-ssh
GEN bin-wrappers/test-tool
AR reftable/libreftable_test.a
LINK t/helper/test-fake-ssh
LINK t/helper/test-tool
ek@apok:~/src/git ((b3c5f5cb04...)|BISECTING)$ ls ~
bin git-2.34.1.tar.xz git-2.45.2.tar.xz mygit.2.45.2.tar.xz src
git-2.34.1 git-2.45.2 mygit.2.34.1.tar.xz repos tmp
ek@apok:~/src/git ((b3c5f5cb04...)|BISECTING)$ make prefix="$HOME/mygit" install
SUBDIR git-gui
SUBDIR gitk-git
SUBDIR templates
install -d -m 755 '/home/ek/mygit/bin'
install -d -m 755 '/home/ek/mygit/libexec/git-core'
install git-daemon git-http-backend git-imap-send git-sh-i18n--envsubst git-shell git-http-fetch git-http-push git-remote-http git-remote-https git-remote-ftp git-remote-ftps '/home/ek/mygit/libexec/git-core'
install git-bisect git-difftool--helper git-filter-branch git-merge-octopus git-merge-one-file git-merge-resolve git-mergetool git-quiltimport git-request-pull git-submodule git-web--browse git-add--interactive git-archimport git-cvsexportcommit git-cvsimport git-cvsserver git-send-email git-svn git-p4 git-instaweb '/home/ek/mygit/libexec/git-core'
install -m 644 git-mergetool--lib git-sh-i18n git-sh-setup '/home/ek/mygit/libexec/git-core'
install git git-receive-pack git-shell git-upload-archive git-upload-pack '/home/ek/mygit/bin'
install git-cvsserver '/home/ek/mygit/bin'
make -C templates DESTDIR='' install
make[1]: Entering directory '/home/ek/src/git/templates'
install -d -m 755 '/home/ek/mygit/share/git-core/templates'
(cd blt && tar cf - .) | \
(cd '/home/ek/mygit/share/git-core/templates' && umask 022 && tar xof -)
make[1]: Leaving directory '/home/ek/src/git/templates'
install -d -m 755 '/home/ek/mygit/libexec/git-core/mergetools'
install -m 644 mergetools/* '/home/ek/mygit/libexec/git-core/mergetools'
install -d -m 755 '/home/ek/mygit/share/locale'
(cd po/build/locale && tar cf - .) | \
(cd '/home/ek/mygit/share/locale' && umask 022 && tar xof -)
install -d -m 755 '/home/ek/mygit/share/perl5'
(cd perl/build/lib && tar cf - .) | \
(cd '/home/ek/mygit/share/perl5' && umask 022 && tar xof -)
make -C gitweb install
make[1]: Entering directory '/home/ek/src/git/gitweb'
make[2]: Entering directory '/home/ek/src/git'
make[2]: 'GIT-VERSION-FILE' is up to date.
make[2]: Leaving directory '/home/ek/src/git'
GEN gitweb.cgi
GEN static/gitweb.js
install -d -m 755 '/home/ek/mygit/share/gitweb'
install -m 755 gitweb.cgi '/home/ek/mygit/share/gitweb'
install -d -m 755 '/home/ek/mygit/share/gitweb/static'
install -m 644 static/gitweb.js static/gitweb.css static/git-logo.png static/git-favicon.png '/home/ek/mygit/share/gitweb/static'
make[1]: Leaving directory '/home/ek/src/git/gitweb'
make -C gitk-git install
make[1]: Entering directory '/home/ek/src/git/gitk-git'
install -d -m 755 '/home/ek/mygit/bin'
install -m 755 gitk-wish '/home/ek/mygit/bin'/gitk
install -d -m 755 '/home/ek/mygit/share/gitk/lib/msgs'
install -m 644 po/bg.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/ca.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/de.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/es.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/fr.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/hu.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/it.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/ja.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/pt_br.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/pt_pt.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/ru.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/sv.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/vi.msg '/home/ek/mygit/share/gitk/lib/msgs' && install -m 644 po/zh_cn.msg '/home/ek/mygit/share/gitk/lib/msgs' && true
make[1]: Leaving directory '/home/ek/src/git/gitk-git'
make -C git-gui gitexecdir='/home/ek/mygit/libexec/git-core' install
make[1]: Entering directory '/home/ek/src/git/git-gui'
DEST /home/ek/mygit/libexec/git-core
INSTALL 755 git-gui
INSTALL 755 git-gui--askpass
LINK git-citool -> git-gui
DEST /home/ek/mygit/share/git-gui/lib
INSTALL 644 tclIndex
INSTALL 644 about.tcl
INSTALL 644 blame.tcl
INSTALL 644 branch_checkout.tcl
INSTALL 644 branch_create.tcl
INSTALL 644 branch_delete.tcl
INSTALL 644 branch_rename.tcl
INSTALL 644 branch.tcl
INSTALL 644 browser.tcl
INSTALL 644 checkout_op.tcl
INSTALL 644 choose_font.tcl
INSTALL 644 choose_repository.tcl
INSTALL 644 choose_rev.tcl
INSTALL 644 chord.tcl
INSTALL 644 class.tcl
INSTALL 644 commit.tcl
INSTALL 644 console.tcl
INSTALL 644 database.tcl
INSTALL 644 date.tcl
INSTALL 644 diff.tcl
INSTALL 644 encoding.tcl
INSTALL 644 error.tcl
INSTALL 644 index.tcl
INSTALL 644 line.tcl
INSTALL 644 logo.tcl
INSTALL 644 merge.tcl
INSTALL 644 mergetool.tcl
INSTALL 644 option.tcl
INSTALL 644 remote_add.tcl
INSTALL 644 remote_branch_delete.tcl
INSTALL 644 remote.tcl
INSTALL 644 search.tcl
INSTALL 644 shortcut.tcl
INSTALL 644 spellcheck.tcl
INSTALL 644 sshkey.tcl
INSTALL 644 status_bar.tcl
INSTALL 644 themed.tcl
INSTALL 644 tools_dlg.tcl
INSTALL 644 tools.tcl
INSTALL 644 transport.tcl
INSTALL 644 win32.tcl
INSTALL 644 git-gui.ico
INSTALL 644 win32_shortcut.js
DEST /home/ek/mygit/share/git-gui/lib/msgs
INSTALL 644 bg.msg
INSTALL 644 de.msg
INSTALL 644 el.msg
INSTALL 644 fr.msg
INSTALL 644 hu.msg
INSTALL 644 it.msg
INSTALL 644 ja.msg
INSTALL 644 nb.msg
INSTALL 644 pt_br.msg
INSTALL 644 pt_pt.msg
INSTALL 644 ru.msg
INSTALL 644 sv.msg
INSTALL 644 vi.msg
INSTALL 644 zh_cn.msg
make[1]: Leaving directory '/home/ek/src/git/git-gui'
bindir=$(cd '/home/ek/mygit/bin' && pwd) && \
execdir=$(cd '/home/ek/mygit/libexec/git-core' && pwd) && \
destdir_from_execdir_SQ=$(echo 'libexec/git-core' | sed -e 's|[^/][^/]*|..|g') && \
{ test "$bindir/" = "$execdir/" || \
for p in git git-shell git-cvsserver; do \
rm -f "$execdir/$p" && \
test -n "" && \
ln -s "$destdir_from_execdir_SQ/bin/$p" "$execdir/$p" || \
{ test -z "" && \
ln "$bindir/$p" "$execdir/$p" 2>/dev/null || \
cp "$bindir/$p" "$execdir/$p" || exit; } \
done; \
} && \
for p in git-receive-pack git-upload-archive git-upload-pack; do \
rm -f "$bindir/$p" && \
test -n "" && \
ln -s "git" "$bindir/$p" || \
{ test -z "" && \
ln "$bindir/git" "$bindir/$p" 2>/dev/null || \
ln -s "git" "$bindir/$p" 2>/dev/null || \
cp "$bindir/git" "$bindir/$p" || exit; }; \
done && \
for p in git-add git-am git-annotate git-apply git-archive git-bisect--helper git-blame git-branch git-bugreport git-bundle git-cat-file git-check-attr git-check-ignore git-check-mailmap git-check-ref-format git-checkout--worker git-checkout-index git-checkout git-clean git-clone git-column git-commit-graph git-commit-tree git-commit git-config git-count-objects git-credential-cache--daemon git-credential-cache git-credential-store git-credential git-describe git-diff-files git-diff-index git-diff-tree git-diff git-difftool git-env--helper git-fast-export git-fast-import git-fetch-pack git-fetch git-fmt-merge-msg git-for-each-ref git-for-each-repo git-fsck git-gc git-get-tar-commit-id git-grep git-hash-object git-help git-hook git-index-pack git-init-db git-interpret-trailers git-log git-ls-files git-ls-remote git-ls-tree git-mailinfo git-mailsplit git-merge-base git-merge-file git-merge-index git-merge-ours git-merge-recursive git-merge-tree git-merge git-mktag git-mktree git-multi-pack-index git-mv git-name-rev git-notes git-pack-objects git-pack-redundant git-pack-refs git-patch-id git-prune-packed git-prune git-pull git-push git-range-diff git-read-tree git-rebase git-receive-pack git-reflog git-remote-ext git-remote-fd git-remote git-repack git-replace git-rerere git-reset git-rev-list git-rev-parse git-revert git-rm git-send-pack git-shortlog git-show-branch git-show-index git-show-ref git-sparse-checkout git-stash git-stripspace git-submodule--helper git-symbolic-ref git-tag git-unpack-file git-unpack-objects git-update-index git-update-ref git-update-server-info git-upload-archive git-upload-pack git-var git-verify-commit git-verify-pack git-verify-tag git-worktree git-write-tree git-cherry git-cherry-pick git-format-patch git-fsck-objects git-init git-maintenance git-merge-subtree git-restore git-show git-stage git-status git-switch git-whatchanged; do \
rm -f "$execdir/$p" && \
if test -z ""; \
then \
test -n "" && \
ln -s "$destdir_from_execdir_SQ/bin/git" "$execdir/$p" || \
{ test -z "" && \
ln "$execdir/git" "$execdir/$p" 2>/dev/null || \
ln -s "git" "$execdir/$p" 2>/dev/null || \
cp "$execdir/git" "$execdir/$p" || exit; }; \
fi \
done && \
remote_curl_aliases="git-remote-https git-remote-ftp git-remote-ftps" && \
for p in $remote_curl_aliases; do \
rm -f "$execdir/$p" && \
test -n "" && \
ln -s "git-remote-http" "$execdir/$p" || \
{ test -z "" && \
ln "$execdir/git-remote-http" "$execdir/$p" 2>/dev/null || \
ln -s "git-remote-http" "$execdir/$p" 2>/dev/null || \
cp "$execdir/git-remote-http" "$execdir/$p" || exit; } \
done
ek@apok:~/src/git ((b3c5f5cb04...)|BISECTING)$ pushd ~/tmp
~/tmp ~/src/git
ek@apok:~/tmp$ PATH="$HOME/mygit/bin:$PATH" GIT_SSH_COMMAND='{ pid="$(ps -o ppid:1= -p "$$")"; ps -o pid:1=,cmd= -p "$pid"; awk -v RS=\\0 "/^GIT_CONFIG/ { print \" \" \$0 }" "/proc/$pid/environ"; } 1>&2; ssh' GIT_CONFIG_COUNT=1 GIT_CONFIG_KEY_0=foo.bar GIT_CONFIG_VALUE_0=baz git clone --recurse-submodules git@github.com:EliahKagan/has-nested-submodule.git
Cloning into 'has-nested-submodule'...
1090770 git clone --recurse-submodules git@github.com:EliahKagan/has-nested-submodule.git
GIT_CONFIG_COUNT=1
GIT_CONFIG_KEY_0=foo.bar
GIT_CONFIG_VALUE_0=baz
remote: Enumerating objects: 4, done.
remote: Counting objects: 100% (4/4), done.
remote: Compressing objects: 100% (4/4), done.
remote: Total 4 (delta 0), reused 4 (delta 0), pack-reused 0
Receiving objects: 100% (4/4), done.
Submodule 'has-submodule' (git@github.com:EliahKagan/has-submodule.git) registered for path 'has-submodule'
Cloning into '/home/ek/tmp/has-nested-submodule/has-submodule'...
1090811 /home/ek/mygit/libexec/git-core/git clone --no-checkout --progress --separate-git-dir /home/ek/tmp/has-nested-submodule/.git/modules/has-submodule --no-single-branch -- git@github.com:EliahKagan/has-submodule.git /home/ek/tmp/has-nested-submodule/has-submodule
GIT_CONFIG_COUNT=1
GIT_CONFIG_KEY_0=foo.bar
GIT_CONFIG_VALUE_0=baz
remote: Enumerating objects: 4, done.
remote: Counting objects: 100% (4/4), done.
remote: Compressing objects: 100% (4/4), done.
remote: Total 4 (delta 0), reused 4 (delta 0), pack-reused 0
Receiving objects: 100% (4/4), done.
Submodule path 'has-submodule': checked out '8de4a40d782ddfd338f2ada312714d60541c6f80'
Submodule 'trivial' (git@github.com:EliahKagan/trivial.git) registered for path 'has-submodule/trivial'
Cloning into '/home/ek/tmp/has-nested-submodule/has-submodule/trivial'...
1090830 /home/ek/mygit/libexec/git-core/git clone --no-checkout --progress --separate-git-dir /home/ek/tmp/has-nested-submodule/.git/modules/has-submodule/modules/trivial --no-single-branch -- git@github.com:EliahKagan/trivial.git /home/ek/tmp/has-nested-submodule/has-submodule/trivial
GIT_CONFIG_COUNT=1
GIT_CONFIG_KEY_0=foo.bar
GIT_CONFIG_VALUE_0=baz
remote: Enumerating objects: 3, done.
remote: Counting objects: 100% (3/3), done.
remote: Compressing objects: 100% (2/2), done.
remote: Total 3 (delta 0), reused 3 (delta 0), pack-reused 0
Receiving objects: 100% (3/3), done.
Submodule path 'has-submodule/trivial': checked out '656a18dc1e48e035a05a72011a62bca5f41fa07e'
ek@apok:~/tmp$ rm -rf has-nested-submodule/
ek@apok:~/tmp$ popd
~/src/git
ek@apok:~/src/git ((b3c5f5cb04...)|BISECTING)$ git bisect new
b3c5f5cb04854b56b39a40696c366053c8f09b58 is the first new commit
commit b3c5f5cb04854b56b39a40696c366053c8f09b58
Author: Atharva Raykar <raykar.ath@gmail.com>
Date: Tue Mar 15 14:09:24 2022 -0700
submodule: move core cmd_update() logic to C
This patch completes the conversion past the flag parsing of
`submodule update` by introducing a helper subcommand called
`submodule--helper update`. The behaviour of `submodule update` should
remain the same after this patch.
Prior to this patch, `submodule update` was implemented by piping the
output of `update-clone` (which clones all missing submodules, then
prints relevant information for all submodules) into
`run-update-procedure` (which reads the information and updates the
submodule tree).
With `submodule--helper update`, we iterate over the submodules and
update the submodule tree in the same process. This reuses most of
existing code structure, except that `update_submodule()` now updates
the submodule tree (instead of printing submodule information to be
consumed by another process).
Recursing on a submodule is done by calling a subprocess that launches
`submodule--helper update`, with a modified `--recursive-prefix` and
`--prefix` parameter.
Mentored-by: Christian Couder <christian.couder@gmail.com>
Mentored-by: Shourya Shukla <periperidip@gmail.com>
Signed-off-by: Atharva Raykar <raykar.ath@gmail.com>
Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Signed-off-by: Glen Choo <chooglen@google.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin/submodule--helper.c | 229 ++++++++++++++++++++++++--------------------
git-submodule.sh | 104 ++------------------
2 files changed, 131 insertions(+), 202 deletions(-)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment