SVN Noob
-
Can you get SVN to maintain a 'remote current version' when you commit changes? (i.e., extra to the repository?) e.g., My repository is on X:\, and when I commit changes there, I want a copy of the file to be made to H:\RemoteCurrentCopy\.
-
Can you get SVN to maintain a 'remote current version' when you commit changes? (i.e., extra to the repository?) e.g., My repository is on X:\, and when I commit changes there, I want a copy of the file to be made to H:\RemoteCurrentCopy\.
That's quite nearly a programming question. :suss: Is H:\RemoteCurrentCopy also a working copy? If so, you might be able to do something to automate the refresh. If not, maybe a BAT file? :-D
You'll never get very far if all you do is follow instructions.
-
Can you get SVN to maintain a 'remote current version' when you commit changes? (i.e., extra to the repository?) e.g., My repository is on X:\, and when I commit changes there, I want a copy of the file to be made to H:\RemoteCurrentCopy\.
Yes there is something call commit hook. Details : http://svnbook.red-bean.com/en/1.7/svn.ref.reposhooks.post-commit.html[^] http://wordaligned.org/articles/a-subversion-pre-commit-hook[^] Now you can write your own code to customize commit :-D :) :) ;)
Life is all about share and care... public class Life : ICareable,IShareable { // implements yours... }
-
Can you get SVN to maintain a 'remote current version' when you commit changes? (i.e., extra to the repository?) e.g., My repository is on X:\, and when I commit changes there, I want a copy of the file to be made to H:\RemoteCurrentCopy\.
Not sure about SVN, but with Git I think you can have multiple remote URL's that you push to (a push is essentially a commit) all at once.
-
Can you get SVN to maintain a 'remote current version' when you commit changes? (i.e., extra to the repository?) e.g., My repository is on X:\, and when I commit changes there, I want a copy of the file to be made to H:\RemoteCurrentCopy\.