comparison tests/fixtures/misspelled_branches_tags.sh @ 1106:5cb6c95e0283 stable

Merge default and stable so I can do stable releases again.
author Augie Fackler <raf@durin42.com>
date Tue, 11 Feb 2014 12:48:49 -0500
parents 791382a21cc4
children
comparison
equal deleted inserted replaced
1020:b5b1fce26f1f 1106:5cb6c95e0283
1 #!/usr/bin/env bash
2
3 set -e
4
5 mkdir temp
6 cd temp
7
8 svnadmin create testrepo
9 svn checkout file://`pwd`/testrepo client
10
11 cd client
12 mkdir trunk
13 mkdir branchez
14 mkdir tagz
15
16 svn add trunk branchez tagz
17 svn commit -m "Initial commit"
18
19 echo "trunk" >> trunk/file
20 svn add trunk/file
21 svn commit -m "Added file in trunk"
22
23 svn cp trunk tagz/tag_from_trunk
24 svn ci -m 'created tag from trunk'
25
26 svn cp trunk branchez/branch
27 svn ci -m 'created branch from trunk'
28
29 echo "branch" > branchez/branch/file
30 svn ci -m "committed to the branch"
31
32 svn cp branchez/branch tagz/tag_from_branch
33 svn ci -m "create tag from branch"
34
35 cd ..
36 svnadmin dump testrepo > ../misspelled_branches_tags.svndump
37
38 echo "Created misspelled_branches_tags.svndump"
39 echo "You might want to clean up ${PWD} now"