I run a lot of my projects for work using
java name.java
I was wondering if there was a way to add a hook to it where it would commit to SVN once that command is ran?
Thanks!
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Yes, Ant and Maven are preferred, but if you insist on doing it manually:
Linux:
java Some.java && svn commit -m "baz" [..other args]Windows:
java Some.java & svn commit [..args]