i create an svn repo with
svnadmin create SVNrep
after that i create a dir and import it to the rep
mkdir test
touch test/test.txt
svn import test file:///Users/sara/SVNrep/test -m "Initial import"
My question is, where svn stores the file that i commit in my filesystem?
I check the the SVNrep but there arent any files i commited.
Best Regards
The files you commit to a Subversion repository are stored in the Subversion repository database. They are not stored as actual files on disk (so you won’t find
test.txtin your SVNRep directory).