aboutsummaryrefslogtreecommitdiffstats
path: root/tests/create-repo.sh
blob: 029161c2757e6c8cff93f4f304507f631852e852 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
#!/bin/bash

here=$(dirname $0)
test_repo=$here/test-repo

new_file () {
    cat <<EOF > $1
one
two
three
four
five
six
seven
eight
nine
ten
EOF

    git add $1
    git commit -m "create $1"
    tag $1
}

tag () {
    git tag "$@"
    echo -n "Hit Enter to continue ..."
    read
}

main () {
    rm -rf $test_repo
    mkdir $test_repo
    cd $test_repo

    git init
    git config user.email git-deps-test@fake.address

    # Start with two independently committed files
    for f in file-{a,b}; do
        new_file $f
    done

    # Now start making changes

    sed -i 's/three/three a/' file-a
    git commit -am 'file-a: change three to three a'
    tag file-a-three-a  # depends on file-a

    sed -i 's/three/three a/' file-b
    git commit -am 'file-b: change three to three a'
    tag file-b-three-a  # depends on file-b

    # Change non-overlapping part of previously changed file
    sed -i 's/eight/eight a/' file-a
    git commit -am 'file-a: change eight to eight a'
    tag file-a-eight-a  # depends on file-a

    # Change previously changed line
    sed -i 's/three a/three b/' file-a
    git commit -am 'file-a: change three a to three b'
    tag file-a-three-b  # depends on file-a-three-a
}

main