aboutsummaryrefslogblamecommitdiffstatshomepage
path: root/test/integration/docker/git_server/setup_repo.sh
blob: c5bb32c96fa6d51812efff98ec46665e5092a599 (plain) (tree)
1
2
3
4
5
6
7
8


                                     
                                 



                                          




                                                                               
















                                           
#!/usr/bin/env bash

set -o errexit -o nounset -o pipefail
shopt -s inherit_errexit lastpipe

readonly local_repo_path="$HOME/test_repo"

setup_local_repo() {
    echo
    echo ----------------------------------------------------------------------
    echo Setting up upstream repository
    echo ----------------------------------------------------------------------

    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