Questions tagged [post-commit]
205 questions
0
votes
0 answers
Git revert a specific merge commit
I'm trying to figure out the best way to completely remove my merge commit from Master.
So far what has happened is I merged my feature branch into Master, and pushed out those changes. Other Dev's have also merged in their feature branches to…

user2221830
- 163
- 2
- 11
0
votes
2 answers
overwrite parameters passed by querystring
I have the following problem
I have a web framework built with classic asp that saves the page state in hidden textboxes, and then issues a submit to itself.
Before submitting, we have a javascript functions that saves the action in a hidden…

opensas
- 60,462
- 79
- 252
- 386
0
votes
2 answers
phpDoc partial update
I'm trying to automate documentation building in our team development environmen, so we decided to use phpDocumentor(2.7.0) and to trigger it to rebuild documentation on SVN post-commit.
I have made a trigger, but I'm pretty shure that all…

dmikam
- 992
- 1
- 18
- 27
0
votes
1 answer
svn post-commit script runs from command line, but not when commiting file(s) to svn
I have a post-commit hook in svn that runs fine from the command line when I run
env - ./foo.sh /path/to/svn/repos/ 12345
but when the script is called from svn it does not appear to work.
What I am basically doing is checking the committed files…

funkadelic
- 183
- 3
- 14
0
votes
1 answer
How to use smtp password with git-multimail
According with this README there is an option to send post commit notification via smtp:
multimailhook.mailer
- smtp: use Python's smtplib. This is useful when the sendmail
command is not available on the system. This mode can be
…

Reci
- 85
- 9
0
votes
3 answers
SVN post-commit hook doesn't open up GUI
I've created a form application in .NET which will be used in the post-commit hook.
the problem is that the UI of the application is not shown.
What may be the problem?
Thanks.
EDIT
my UI should show Issue numbers of the developer. from there he…

Oded
- 795
- 2
- 12
- 32
0
votes
1 answer
Yet another Subversion "Commit failed" MERGE of 'blabla': 200 OK
I get the infamous "MERGE of 'whatever': 200 OK" whenever I try to commit using a post-commit hook on Windows (running the repository and Trac locally), and I'm going crazy. I've been looking all over for a day now, without finding any solutions.
So…

mistalaba
- 558
- 1
- 7
- 19
0
votes
2 answers
How to add the commit comment to a Subversion post-commit hook
I have a working Subversion Post Commit working OK - how do I add in the comments made by the user performing the commit?
My code is
REPOS="$1"
REV="$2"
AUTHOR="$(svnlook author -r $REV $REPOS)"
mailer.py commit "$REPOS" "$REV"…

benb3342
- 13
- 4
0
votes
1 answer
SVN post-commit hook isn't executing a command properly
I have a post-commit hook that works, but for some reason the following line of code is not working properly. It creates my test file regardless of a fail.
!#/bin/sh
# force a failure
ifconfig -z 1>/dev/null 2>&1
if [ $? -ne 0 ]
then
touch…

nullByteMe
- 6,141
- 13
- 62
- 99
0
votes
1 answer
"Error Validating server certificate" error in post-commit hook on VisualSVN Server
I am using post commit hook in visual svn. I am trying to checkout the files committed to the repository:
When I commit the file, I get the below error in post commit hook:
D:\Program Files\VisualSVN Server>"D:\Program Files\VisualSVN…

Sweety Bertilla
- 972
- 10
- 35
0
votes
1 answer
SVN post commit hook: record number of pages in LaTeX document?
I would like to record how the number of pages of my LaTeX document grows over time.
I store the foo.tex file in my SVN repository, so I'm thinking I can use a post-commit script for that, which runs LaTeX automatically (whenever changes to foo.tex…

Frank
- 64,140
- 93
- 237
- 324
0
votes
2 answers
trac-post-commit-hook does not update trac ticket
I have installed trac 0.11.6 stable with mod_wgsi with running on apache server on my windows server 2008. When I do commit through TSVN, trac-post-commit-hook does not update and send out email notification. However if I use windows command line…
user246671
0
votes
3 answers
How do you save data in MFC?
I still remember in Delphi, developer can just make the UI(textbox, listbox...) directly connect to database, and then when user click a button, just call the post action, then the data will be saved automatically.
What I want to know is that is…

MemoryLeak
- 7,322
- 23
- 90
- 133
0
votes
1 answer
svn post-commit shell script permission errors
I have written my first shell script which goes like this
#!/bin/bash
#
# This is a custom post-commit for sending email
# when an svn repo is changed.
#
repodir=$1
revision=$2
author=`/usr/bin/svnlook author -r $revision…
user1037355
0
votes
1 answer
SVN FTP Upload with multiple FTP accounts
We have multiple ftp accounts for each website and recently have set up the folder with all the websites inside of a SVN Repository. What would be the best approach to set it up so it would upload on commit to the respective ftp account based on…

JustNeph
- 761
- 3
- 10
- 25