RE: newbie cant import files into repo
From: Bob Archer <Bob.Archer_at_amsi.com>
Date: Mon, 21 Jul 2014 14:26:48 +0000
> Hi, I created a repo using svnadmin create in a dir called trunk (that's what
You can create your repository in any folder you want. It doesn't have to be in a folder named trunk. Trunk is usually a folder that you create insider your repository.
I assume you want to do this all locally.
So, create your repository.
md TempRepoRoot
Once you do that you want to do a check out.
md Projects (probably in your user folder)
Now do your checkout with the file protocol:
svn co file:///c:/%HOMEPATH%/TempRepoRoot/MyRepo MyWorkingCopy
Now you have checked out your repo you can create some folders:
Cd MyWorkingCopy
Then, check that in...
Svn ci -m "Initialize repo"
Now you probably want to checkout trunk, or perhaps switch to trunk. Up to you.
Cd ..
Then, copy all your files into there. Do an svn add and Bob's your uncle.
|
This is an archived mail posted to the Subversion Users mailing list.
This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.