summaryrefslogtreecommitdiffstats
path: root/test/integration/branchAutocomplete/setup.sh
blob: cde74f6103fd0c5d571a3bf8f7cb5654c7dbc5e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/sh

cd $1

git init

git config user.email "CI@example.com"
git config user.name "CI"

touch myfile.txt
git add .
git commit -m "initial commit"

git checkout -b one
git checkout -b two
git checkout -b three
git checkout -b four