Yuriy Rusinov wrote:
> Does there any way to set username and password for svn
> repositary for VCSCommit command

Although I never use VCSCommit command [1], I suspect that it relies
on command line tool "svn", the same way as other VCS suite
commands are. And command line "svn" command in turn remembers
it's last used user / password per working copy. So you can try:

- open console (cmd.exe on windows or xterm on unix)
- cd /path/to/your/working/copy
- svn log -r HEAD --username=user
  <enter password interactively>

try :VCSCommit from VIM.

Hope that helps.

-- 
Anton

[1] My usage scenario for commit always starting in command line:

$ svn status | vim -

than you can use ^W f on files listed, and use :VCSVimDiff on
them to review changes. If all ok, you use
(environment variable EDITOR=/path/to/your/vim)

$ svn commit

than you can again use ^W f on files listed, :VCSVimDiff on them
and prepare commit message. :write buffer, :quit it and thats
all.

--~--~---------~--~----~------------~-------~--~----~
You received this message from the "vim_use" maillist.
For more information, visit http://www.vim.org/maillist.php
-~----------~----~----~----~------~----~------~--~---

Reply via email to