Skip to content
Permalink
9fd312a796
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
Latest commit 9fd312a Sep 15, 2008 History
These are the script I use for mirroring the OSC's OSD svn tree.
See svninfo.txt file for more details.

svn_fetch_start.sh followed by svn_fetch3 will rebuild the all tree,
for example when svn_fetch3 has changed and we need a fresh re-import.

Otherwise svn_fetch3.sh can be used from time to time to update on new
revisions from svn.

Signed-off-by: Boaz Harrosh <bharrosh@panasas.com>
0 contributors

Users who have contributed to this file

executable file 18 lines (14 sloc) 272 Bytes
#!/bin/bash
start_rev=695
util_first=2918
initiator_first=2162
svn_start_update()
{
cd $1
svn update -r $2
cd ..
}
# git-reset --hard BEGIN
svn_start_update osd-target $start_rev
svn_start_update osd-util $util_first
svn_start_update osd-initiator $initiator_first