I have a SVN project at work that looks like this:
Repository
project
|-- docs
|-- scripts
`-- app
|-- trunk
|-- branches
| `-- development
`-- tags
|-- Release_1.0
|-- ...
`-- Release_5.3
I want my working folder like this:
Working copy
dir_root
|-- docs
|-- scripts
|-- trunk
`-- branches
`-- development
I would like to commit some code from "dir_root/trunk" and "dir_root/docs" simultaneously in one commit to have only 1 revision number.
How can I checkout to ignore the "tags" folder and still be able to commit to multiple directories.
Note:
- I can't checkout all the repository because "tags" contains too many release.
- I tried to use sparse directories, but it keep giving me this error "svn: '/dir_root' is not a working copy" when I try to commit.