aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/.travis/docker/server/setup_repo.sh
blob: 3d5b8993559d2c8e327bd248e1769aeed1607630 (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
#!/usr/bin/env bash

set -o errexit -o nounset -o pipefail

readonly local_repo_path="$HOME/test_repo"

setup_local_repo() {
    mkdir -p -- "$local_repo_path"
    pushd -- "$local_repo_path" > /dev/null
    git init
    echo '1' > 1.txt
    git add .
    git commit -m 'first commit'
    echo '2' > 2.txt
    git add .
    git commit -m 'second commit'
    popd > /dev/null
}

main() {
    setup_local_repo
}

main