2

I am trying to set up subversion on windows. I followed this blog (http://blog.codinghorror.com/setting-up-subversion-on-windows/) and did the setup as instructed, it was successfully installed i think, but i am stuck somewhere in-between while testing if it is working or not

After doing this :

set SVN_EDITOR=c:windowssystem32notepad.exe
svn mkdir svn://localhost/myproject

it opens up notepad and i modified and saved it and it was suppose to ask for credentials and all but it is showing some other messages. enter image description here

I am not sure how to make it working. Am i doing something wrong ?

bahrep
  • 29,961
  • 12
  • 103
  • 150
Sthita
  • 1,750
  • 2
  • 19
  • 38

3 Answers3

1

This can happen if you didn't save the commit message in notepad.exe. Press Ctrl+S and close Notepad. You should see authentication prompt after this step. If the server allows anonymous access then the commit should start without any additional actions.

bahrep
  • 29,961
  • 12
  • 103
  • 150
1

I found the solution. This was down to a version conflict. I have Tortoise version 1.8 installed on my PC and I was downloading version 1.6 of Subversion.

Solution:

Subversion: SVN E160043. Expected FS format between '1' and '4

svnadmin create --compatible-version 1.6 PATHNAME

Fixed my problem.

Community
  • 1
  • 1
Sthita
  • 1,750
  • 2
  • 19
  • 38
  • 1
    The format of a repository is completely unrelated to the original question about notepad.exe. BTW, don't use SVN 1.6 or 1.7. Both these versions are not supported anymore. Use 1.9 or 1.8. – bahrep Aug 20 '15 at 06:49
0

As far as I know you have to save your message correctly. If you have to work with Windows/OSX parallely, be aware that you have to use different Shortcuts(Windows: Crtl+S OSX: cmd + S). Otherwise it should work, if the server allow access (as you're hopefully the admin)

bahrep
  • 29,961
  • 12
  • 103
  • 150
pguetschow
  • 5,176
  • 6
  • 32
  • 45
  • @bahrep May be windows security issue or something, Whenever i save using ctrl+s it says "Log message unchanged or not specified" as shown in the screenshot. – Sthita Aug 19 '15 at 01:16