Reputation: 1156
I'm trying to set up a local svn to version control a really big project. Normally i have only used premade SVNs for school stuff, is it even possible to create a local svn folder that will keep track of changes.
I am using svnadmin create myrepo
to create the repository, and then svn import home/dev/svntest file:///home/dev/myrepo
to import the file there. However when I run that command a file called svn-commit.tmp
is created with the following text in it:
"--This line, and those below, will be ignored--
A hello.txt:///~myrepo/test1"
What am i doing wrong?
Upvotes: 0
Views: 219
Reputation: 97280
Follow-up to @Mike
file:///home/dev/myrepo/trunk
)svn ls -v -R file:///home/dev/myrepo
commandUpvotes: 0
Reputation:
You're missing a commit message for your svn import
. Add -m "Initial import of project svntest"
to your svn import
line.
Upvotes: 2