source: trunk/tp_subversion/create_tp_repo.sh @ 406

Last change on this file since 406 was 379, checked in by nanardon, 11 years ago

diverses corrections

  • Property svn:eol-style set to native
File size: 323 bytes
Line 
1#!/bin/sh
2
3URL=$1
4
5tmpdir=`mktemp -d`
6
7svn co $URL $tmpdir
8
9mkdir $tmpdir/{trunk,branches,tags,files}
10svn add $tmpdir/{trunk,branches,tags,files}
11
12cp tpfiles/*.txt $tmpdir/files/
13svn add $tmpdir/files/*.txt
14
15cp tpfiles/Makefile $tmpdir/trunk
16svn add $tmpdir/trunk/Makefile
17
18(
19cd $tmpdir
20svn commit -m "initial structure"
21)
Note: See TracBrowser for help on using the repository browser.