summaryrefslogtreecommitdiffstats
path: root/test/generate_basic_repo.sh
blob: e7f567a235eaba61f87118d8cdd49cf0d3a7a7c0 (plain)
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
#!/bin/bash

# this script will make a repo with a master and develop branch, where we end up
# on the master branch and if we try and merge master we get a merge conflict

# -e means exit if something fails
# -x means print out simple commands before running them
set -ex

reponame="testrepo"

rm -rf ${reponame}
mkdir ${reponame}
cd ${reponame}

git init

echo "Here is a story that has been told throuhg the ages" >> file1
git add file1
git commit -m "first commit"

git checkout -b develop

echo "once upon a time there was a dog" >> file1
git add file1
git commit -m "first commit on develop"

git checkout master

echo "once upon a time there was a cat" >> file1
git add file1
git commit -m "first commit on develop"

git merge develop # should have a merge conflict here