Search:

Type: Posts; User: philip

Page 1 of 13 1 2 3 4

Search: Search took 0.08 seconds.

  1. Replies
    1
    Views
    67

    The upcoming 1.8 release will detect this and...

    The upcoming 1.8 release will detect this and raise a tree-conflict.
    http://subversion.tigris.org/issues/show_bug.cgi?id=3150
  2. Replies
    4
    Views
    2,304

    svnsync uses svn_ra_callbacks2_t directly so is...

    svnsync uses svn_ra_callbacks2_t directly so is similar to svnmucc, set source_callbacks.get_client_string and sync_callbacks.get_client_string in make_subcommand_baton().
  3. Replies
    4
    Views
    2,304

    For clients that use an svn_client_context_t you...

    For clients that use an svn_client_context_t you can set the client_name member:


    Index: subversion/svn/main.c
    ===================================================================
    ---...
  4. Replies
    13
    Views
    2,397

    The POST tells us that the repository root URL is...

    The POST tells us that the repository root URL is '/repo1', combine that with SVNParentPath to get a repository path on disk of '/path/to/repos/repo1' and a format file path on disk of...
  5. Replies
    13
    Views
    2,397

    What error do you get?

    What error do you get?
  6. Replies
    13
    Views
    2,397

    Are you committing from a working copy or are you...

    Are you committing from a working copy or are you importing directly? If you are committing from a working copy which repository root URL is associated with the working copy? (Use "svn info" on the...
  7. Replies
    13
    Views
    2,397

    The hex characters look like one of the CJK...

    The hex characters look like one of the CJK languages: 统找不到指定的路径 Could that be a translation of the error message "no such file or directory"?

    It appears that 'path\\to\\repos\\error.php' is...
  8. Replies
    4
    Views
    3,053

    Generally you look in the Apache log and the...

    Generally you look in the Apache log and the system log. The log messages you have shown are just the standard messages when Apache is shut down or restarted so they don't tell us anything.
  9. Replies
    7
    Views
    3,504

    Packages for stable (squeeze) are being worked on...

    Packages for stable (squeeze) are being worked on and will be available in a few days.
  10. Replies
    3
    Views
    4,076

    When you commit inside /branches/branch1 you...

    When you commit inside /branches/branch1 you create a new representation of the committed item in the repository. You also create a new representation of the parent directory of the committed item,...
  11. Replies
    3
    Views
    4,076

    One possibility is that you have a directory,...

    One possibility is that you have a directory, /tags/ or /branches/ perhaps, that has a large number of entries and which keeps getting larger as more branches/tags are created. Then any commit to any...
  12. Replies
    2
    Views
    3,643

    It's a feature, or limitation depending on your...

    It's a feature, or limitation depending on your point of view, that Subversion doesn't allow old revisions to be changed. If you do want to change history you need to create a new repository and...
  13. If A is a working copy directory that is already...

    If A is a working copy directory that is already under version control then use:

    svn add --force A

    to add all the unversioned items inside A. If you only want new files inside A, not new...
  14. Replies
    2
    Views
    1,701

    It's only ever been reported on Windows. It may...

    It's only ever been reported on Windows. It may be some sort of binary incompatibility between the apache binary and the mod_dav_svn binary however nobody has been able to diagnose it. Can you tell...
  15. Replies
    6
    Views
    2,145

    You can do it with the python bindings: ...

    You can do it with the python bindings:

    #!/usr/bin/python

    import sys
    from svn import repos, fs

    repos_handle = repos.open(sys.argv[1])
    fs_handle = repos.fs(repos_handle)
    txn_handle =...
  16. Replies
    6
    Views
    2,145

    The reason for not changing the commit is that...

    The reason for not changing the commit is that the client and server communicate file changes as deltas, i.e. they transfer only the difference between the old and new versions rather than the full...
  17. Replies
    6
    Views
    2,145

    The log message is the revision property svn:log...

    The log message is the revision property svn:log and changing revision properties during pre-commit is perfectly acceptable.
  18. The import command doesn't look at the svn:ignore...

    The import command doesn't look at the svn:ignore setting on the source directory (in your case the source and destination are the same URL but that is unusual for import). The import will respect...
  19. Replies
    1
    Views
    603

    Subversion sets the date on each revision when...

    Subversion sets the date on each revision when the revision is committed. The date can be changed after the commit if the pre-revprop-change hook allows the svn:date revision property to be changed....
  20. Replies
    4
    Views
    1,007

    mod_dav_svn.so is the module. I'd exepct...

    mod_dav_svn.so is the module. I'd exepct /usr/lib/httpd/modules/mod_dav_svn.so to be the original 1.1.4 module, you should be able to tell by looking at the timestamp. Your build of 1.7.8 needs to be...
  21. Here is a complete example: svnadmin create...

    Here is a complete example:


    svnadmin create /tmp/repo
    svn mkdir -mm --parents http://localhost:8888/tmp/repo/A/B
    svnmucc -mm propset svn:externals '/tmp/repo2/A/B/f f'...
  22. You said your file external references a second...

    You said your file external references a second repository. Only directory externals can refer to a second repository. Checkout/update should give you a warning:

    svn: warning: W200007:...
  23. Replies
    4
    Views
    1,007

    (Assuming this is your RedHat system) The apache...

    (Assuming this is your RedHat system) The apache config file determines which modules are loaded. By default it will load the modules from /usr linked to the Subversion libraries in /usr and will...
  24. Replies
    1
    Views
    852

    You cannot use hooks for this. Hooks run on the...

    You cannot use hooks for this. Hooks run on the server and they do not know what user environment was used to make the commit. The start-commit does get the client capabilities but these are the same...
  25. Replies
    8
    Views
    6,107

    'pristine' is the just the full text of the file...

    'pristine' is the just the full text of the file in the repository at a particular revision, that revision doesn't have to be HEAD. A file that has been committed several times will have several...
Results 1 to 25 of 302
Page 1 of 13 1 2 3 4