1
Is there any way to control the approval of a SVN file? If there is no explicit approval, there is some other similar way (as in opensource projects) to control file entry into the repository?
Thank you!
1
Is there any way to control the approval of a SVN file? If there is no explicit approval, there is some other similar way (as in opensource projects) to control file entry into the repository?
Thank you!
1
For you to do exactly what you want, get the commit on the server and keep it out of the repository until the moment you give an approval, I believe it would be reasonably complicated, you need to build the whole interface for this since as far as I remember there is nothing ready exactly in this model.
As an alternative I suggest you two options:
It would also be possible to combine the two strategies and have commits in the branch generate alerts, speeding up the revision process to give the "ok, you can merge into the trunk".
Thanks Bruno, I think the idea of using an intermediary branch is the best. I saw that SVN makes it possible to create pre-commit scripts, which would make a tool to control these approvals. But I think your second alternative is the most viable at the moment. Thanks for the help!
Browser other questions tagged svn versioning tortoisesvn
You are not signed in. Login or sign up in order to post.
It is very vague, explain better or give an example of what you mean by "control the approval/file entry". Are you talking about something like . gitignore? or pre-commit Hooks? or maybe you’re confusing git with github and referring to pull requests?
– BrunoRB
Next @Brunorb. In this repository I have several developers working. For some, I would like to require an approval to prevent "commits" being made without a more thorough evaluation of what is being done. Would be a pre-commit as you mentioned
– Lucas Moretto