powerbuilder - Add to source control ERROR

Get help with the installation and running of the Agent Git or Agent SVN plug-ins. This section can also be used for posting comments, suggestions or submitting feature requests. Please do not post bug reports here. When in doubt post your question here.
Post Reply
rjb80
Posts: 1
Joined: Tue Jan 14, 2014 4:56 am

powerbuilder - Add to source control ERROR

Post by rjb80 »

i'm not english. i hope your understand

i use your agent_svn .
and Add to source control ERROR

error message
----------------------------------
Agent SVN Info:
Agent SVN Info: * Command: svn.exe --non-interactive --trust-server-cert --no-auth-cache --username rjb80 --verbose status dw
Agent SVN Info: * Directory: C:\wizwid\src_new_20140113
Agent SVN : Process started.
Agent SVN : Process running....
Agent SVN Info: 23454 23454 rjb80 dw
Agent SVN : Process completed with exit code: 0
Agent SVN Info: Result: 0 Status Code: 1 (0x1)
Agent SVN Info: * Command: svn.exe --non-interactive --trust-server-cert --no-auth-cache --username rjb80 add d_dw210120lp_01.srd
Agent SVN Info: * Directory: C:\wizwid\src_new_20140113\dw
Agent SVN : Process started.
Agent SVN : Process running....
Agent SVN Info: A d_dw210120lp_01.srd
Agent SVN : Process completed with exit code: 0
Agent SVN Info: Result: 0 Status Code: 0 (0x0)
Agent SVN Info: * Command: svn.exe --non-interactive --trust-server-cert --no-auth-cache --username rjb80 commit --no-unlock -m" " d_dw210120lp_01.srd
Agent SVN Info: * Directory: C:\wizwid\src_new_20140113\dw
Agent SVN : Process started.
Agent SVN : Process running....
Agent SVN Info: Adding d_dw210120lp_01.srd
Agent SVN Error: Transmitting file data .svn: E165001: Commit failed (details follow):
Agent SVN Error:
Agent SVN Error: You will need to use a tool like TortoiseSVN to resolve this conflict.
Agent SVN Error:
Agent SVN Error: Alternatively, use the 'Get Latest' option to update the file to the latest version.
Agent SVN Error:
Agent SVN : Process completed with exit code: 1
Agent SVN Info: Result: -19 Status Code: -1 (0xFFFFFFFF)
Agent SVN Info:
Agent SVN Info: =======================================================
Agent SVN Info: Message Box
Agent SVN Info: =======================================================
Agent SVN Info: Adding d_dw210120lp_01.srd
Agent SVN Info: Transmitting file data .svn: E165001: Commit failed (details follow):
Agent SVN Info: svn: E165001: 커밋 blocked by pre-commit hook (exit code 1) 출력 없음.
Agent SVN Info:
Agent SVN Info: You will need to use a tool like TortoiseSVN to resolve this conflict.
Agent SVN Info:
Agent SVN Info: Alternatively, use the 'Get Latest' option to update the file to the latest version.
Agent SVN Info:
Agent SVN Info: Command: svn.exe --non-interactive --trust-server-cert --no-auth-cache --username rjb80 commit --no-unlock -m" " d_dw210120lp_01.srd
Agent SVN Info: Error Code: SCC_E_FIXMERGE
Agent SVN Info:
Agent SVN Info: =======================================================
Agent SVN Info:
Agent SVN Info:
i want your solution!!!help me..
jussij
Site Admin
Posts: 2650
Joined: Fri Aug 13, 2004 5:10 pm

Post by jussij »

i want your solution!!!help me..
I will try and help :)

If you look in the log file you will see this error being reported by the SVN client.

Code: Select all

svn: E165001: 커밋 blocked by pre-commit hook (exit code 1) 출력 없음.

From that error output you can see your environment has a pre-commit hook configured and that hook has blocked the commit action.

That error was caused by this SVN command line command:

Code: Select all

svn.exe --non-interactive --trust-server-cert --no-auth-cache --username rjb80 commit --no-unlock -m" " d_dw210120lp_01.srd

As you can see Agent SVN was trying to commit the changes to the d_dw210120lp_01.srd file.

You can also see that the user comment for the commit (-m" ") is also blank.

I suspect you have a pre-commit hook configured that does not allow commits without a proper user comment.

Is there an option in PowerBuilder to add a user comment on check in.

If there is then try adding a longer user comment.

Cheers Jussi
Post Reply