]> git.ipfire.org Git - thirdparty/git.git/blame - git-deltafy-script
tutorial.txt: start describing how to copy repositories
[thirdparty/git.git] / git-deltafy-script
CommitLineData
e002a16b
NP
1#!/bin/bash
2
53d4b460 3# Example script to deltafy an entire GIT repository based on the commit list.
e002a16b
NP
4# The most recent version of a file is the reference and previous versions
5# are made delta against the best earlier version available. And so on for
53d4b460
NP
6# successive versions going back in time. This way the increasing delta
7# overhead is pushed towards older versions of any given file.
e002a16b
NP
8#
9# The -d argument allows to provide a limit on the delta chain depth.
53d4b460
NP
10# If 0 is passed then everything is undeltafied. Limiting the delta
11# depth is meaningful for subsequent access performance to old revisions.
12# A value of 16 might be a good compromize between performance and good
13# space saving. Current default is unbounded.
14#
15# The --max-behind=30 argument is passed to git-mkdelta so to keep
16# combinations and memory usage bounded a bit. If you have lots of memory
17# and CPU power you may remove it (or set to 0) to let git-mkdelta find the
18# best delta match regardless of the number of revisions for a given file.
19# You can also make the value smaller to make it faster and less
20# memory hungry. A value of 5 ought to still give pretty good results.
21# When set to 0 or ommitted then look behind is unbounded. Note that
22# git-mkdelta might die with a segmentation fault in that case if it
23# runs out of memory. Note that the GIT repository will still be consistent
24# even if git-mkdelta dies unexpectedly.
e002a16b
NP
25
26set -e
27
28depth=
29[ "$1" == "-d" ] && depth="--max-depth=$2" && shift 2
30
53d4b460
NP
31function process_list() {
32 if [ "$list" ]; then
33 echo "Processing $curr_file"
34 echo "$head $list" | xargs git-mkdelta $depth --max-behind=30 -v
35 fi
36}
37
e002a16b
NP
38curr_file=""
39
40git-rev-list HEAD |
53d4b460
NP
41git-diff-tree -r -t --stdin |
42awk '/^:/ { if ($5 == "M" || $5 == "N") print $4, $6;
43 if ($5 == "M") print $3, $6 }' |
587e4940
NP
44LC_ALL=C sort -s -k 2 | uniq |
45while read sha1 file; do
e002a16b
NP
46 if [ "$file" == "$curr_file" ]; then
47 list="$list $sha1"
48 else
53d4b460 49 process_list
e002a16b
NP
50 curr_file="$file"
51 list=""
52 head="$sha1"
53 fi
54done
53d4b460
NP
55process_list
56
57curr_file="root directory"
58head=""
59list="$(
60 git-rev-list HEAD |
61 while read commit; do
62 git-cat-file commit $commit |
63 sed -n 's/tree //p;Q'
64 done
65 )"
66process_list
67