Hi all,
I a newbee and I have a question, I have a script bash shell pre-commit hooks and i checked it on svn local but when i uploaded to git collanet on internet and test, i saw error:
and my script is:PHP Code:svn: Server sent unexpected return value (409 Conflict) in response to MERGE request for '/svn/my_repository
please help me in that problem, i don't know to fix that error, thanks all.PHP Code:#!/bin/sh
REPOS="$1"
TXN="$2"
#SVNLOOK=/usr/bin/svnlook
# Make sure that the log message contains some text.
SVNLOOK=/usr/bin/svnlook
#$SVNLOOK log -t "$TXN" "$REPOS" | \
# grep "[a-zA-Z0-9]" > /dev/null || { echo "<<Empty log message>>" >& 2; exit 1; }
# All checks passed, so allow the commit.
exit 0


Reply With Quote

Bookmarks