First of all, i am on Windows 7, if that makes a difference, using Cygwin.
I'am using a dropbox as my svn repo, where i can manage multiple projects. After each commit to each projects, i want to update a file changelog.txt
in public_root
folder, and if it's possible, commit the changes made after post-commit script.
post-commit
file located under /hooks
folder in svn repo:
#!/bin/sh
REPOS=$1
REV=$2
/usr/bin/svnlook info $REPOS >> $REPOS/changelog.txt
Actually it place a changelog.txt
into svn repo folder, what i want is to put it inside the folder of my checked out project (sorry for not knowing the right terms to describe)
Any advice ?