Re: subversion checkout accidently to C:\ drive - how undue?

2011-01-13 Thread Lorenz
ask on the us...@tortoisesvn.tigris.org mailing list. -- Lorenz

Re: problem with mutated vowel in log-message-contents

2011-02-20 Thread Lorenz
ine ... ... but > svn pg svn:log --revprop -r $rev $url | sed ... | svn ps svn:log --revprop -r > $rev --username ... --password ... --file - $url should do it (... == fill in the blanks 8-) -- Lorenz

Re: Using tags with SVN

2011-04-03 Thread Lorenz
rking from the command line you can use svnmucc to do it in one commit. -- Lorenz

Re: hook permissions, visualsvn, windows

2011-06-08 Thread Lorenz
u sure that runs from the windows command line? Doing so on win xp gives me errors about the "REPOS=$1" and "REV=$2" lines. And the when I correct the syntax the call to svn results in svn trying to update $REPOS (literally!) and D:/Websites/wwwsite1 Anyway, the syntax of the update command is: svn up no repository url/path required/allowed. -- Lorenz

Re: Questions

2011-06-13 Thread Lorenz
Richard Cavell wrote: >[...] > How do I get my "$Id$" back? if there are no local changes to the file, you can just remove the svn:keywords property, delete the file and then perform an update on the wc. That will give you the state of the $Id$ keyword as it was initialy committed. -- Lorenz

Re: Questions

2011-06-14 Thread Lorenz
Geoff Hoffman wrote: >Why remove the Id keyword? Just delete the file (not svn delete, OS level >delete) then svn up. > > >On Mon, Jun 13, 2011 at 11:08 PM, Lorenz wrote: >[...] >> you can just remove the svn:keywords property -- Lorenz

Re: Deleting a directory with a space in it.

2011-09-19 Thread Lorenz
09, >#165001] the operation is clearly prohibited by a pre-commit hook script on the server. You will need to talk to the person who put it there. -- Lorenz

Re: Releasing an open source subversion client

2011-09-22 Thread Lorenz
thought was: "oh nice, svn-integration with MS-Visio. Does it have a graphical diff-tool for visio charts?" but, I rejoiced too soon ... -- Lorenz

Re: Migrating files between two repositories without admin rights and preserving history

2011-10-11 Thread Lorenz
questions >* I don't want to sync the whole repository, just one directory inside >(http://repo1/trunk/source/dir1 to http://repo2/trunk/source/dir1) have a look at http://subversion.apache.org/docs/release-notes/1.7.html#svnrdump -- Lorenz

Re: Migrating files between two repositories without admin rights and preserving history

2011-10-13 Thread Lorenz
y that doesn't involve using brand new SVN? svnsync allows to mirror a subtree of a repository -- Lorenz

Re: Migrating files between two repositories without admin rights and preserving history

2011-10-13 Thread Lorenz
Daniel Shahaf wrote: >Lorenz wrote on Thu, Oct 13, 2011 at 15:22:30 +: >> [...] >> anyways, I just read elsethread that dumpfilter does not work with the >> dump format version that 1.7 uses. > >You misunderstood. > >svndumpfilter does not work with format 3

Re: Can relocate from a svnserve based server that was 'svn sync' to a new http based server

2012-01-30 Thread Lorenz
p://svnbook.red-bean.com/en/1.7/svn-book.html#svn.reposadmin.maint.uuids for more information. -- Lorenz

Re: Need to subscribe SVN group.

2012-02-02 Thread Lorenz
Sachin Gurumukhi wrote: >[nothing] go to http://subversion.apache.org/mailing-lists.html for instructions -- Lorenz

Re: Questions about importing data into the Subversion repository on a WINDOWS 2003 Server platform

2012-02-27 Thread Lorenz
TSVN comes with documentation too. Perhapse searching for 'import ' there might help OTOH you are talking about >I have configured my vendor software to enable Source Code control >integration. so perhapse your vendor software allows you to do the import too? -- Lorenz

Re: details for product

2012-03-02 Thread Lorenz
;2. how it manages centralized repository for code. >3. does it have any demo version. oh come on have you even looked at http://subversion.apache.org -- Lorenz

Re: SVN Problems

2012-03-06 Thread Lorenz
slower down in >saving files , Why? there might be the slightest chance that the people over at us...@ankhsvn.open.collab.net are better equipped to helping with AnkhSVN/Visual Studio questions 8-) -- Lorenz

Re: Apache Subversion 1.7.4 Released

2012-03-08 Thread Lorenz
Tim Kuehn wrote: >how do I get off this list? by going to http://subversion.apache.org/mailing-lists.html and following the instructions? -- Lorenz PS: and please don't hijack unrelated threads

Re: preventing commits (this is *not* a classic hook question)

2012-03-20 Thread Lorenz
Have your hook script check this revprop to determine if commits are allowed. All the users will have to do is edit the revprop (no commit required). Original version has the side benefit of providing an audit trail for the configuration changes. -- Lorenz

Re: Implementations of an SVN/DAV aware proxy?

2012-04-16 Thread Lorenz
Tim Watts wrote: >[...] >We're changing SVN servers from mod-dav-svn to SCM-Manager - and one >minor fly in the ointment is the style of our old repo URI, which was of >the form: is there a reason you can't just use 'svn relocate' on the working copies? -- Lorenz

Re: Can't commit after deleting files from repository

2012-05-01 Thread Lorenz
trying to 'svn commit ' You need to commit the containing folder instead, because that's where the deletion is recorded. -- Lorenz

Re: Can't commit after deleting files from repository

2012-05-02 Thread Lorenz
Daniel Shahaf wrote: >Lorenz wrote on Wed, May 02, 2012 at 06:40:03 +: >> nut wrote: >> >> >I'm trying to delete some files from my repository. After "svn delete >> >", I get >> > >> >D >> > >> >as e

Re: Upgrade to v1.7 = death of working copies

2012-05-10 Thread Lorenz
/, svn://, http://)? can you check out a new WC and commit from that? do all upgraded WC have problems? ... -- Lorenz

Re: svn cp (tag) should make an svn:external nail down to a revision

2012-06-04 Thread Lorenz
svnmucc -U cp p1/trunc p1/tags/p1t1 \ cp p2/trunc p2/tags/p2t1 \ propset svn:externals "^/p2/tags/p2t1 p2" p3/tags/p3t3 -m "tagging p1 & p2 and adapting svn:external used by p1" does the job too (does only work if everything is in one repo). -- Lorenz

Re: How to create a tag from multiple revisions?

2012-06-14 Thread Lorenz
anges from trunk@331. you might want to read http://svnbook.red-bean.com/nightly/en/svn.branchmerge.html I would create a release branch from the last stable trunk version (330) and merge in the trunk revisions that I want to go in the release. Then create the tag from the branch. > Am I able to do this - using subclipse or tortoise? yes 8-) -- Lorenz

Re: How to find out Subclise version?

2012-06-18 Thread Lorenz
t;[...] be aware that the subclipse version matching svn 1.7 is 1.8 -- Lorenz

Re: SVN codebase backup

2012-08-02 Thread Lorenz
(remote repository without root access) you should have a look at svnsync (part of subversion) or rsvndump (rsvndump.sourceforge.net) or perhapse http://www.cloudforge.com/faq/index.php#export already solves your problem? -- Lorenz

Re: Upgrade 1.5.4 to 1.7.5

2012-08-03 Thread Lorenz
talled Subversion and I'm not an advanced Linux >administrator in case of installing software by hand from source code. > >So I thank you in advance for your anwers and hints. have a look at http://software.opensuse.org/package/subversion -- Lorenz

Re: How to stop delete files/directory from SVN Repo Browser

2012-08-06 Thread Lorenz
e commit. I tried it using svn hooks but not >able to do so. Please guide me. you can examine the prepared but not yet finalized commit (the transaction in svn speak) in the precommit hook just like you can the newly created revision in the postcommit hook. -- Lorenz

Re: Question about web access to SVN repository ....

2012-08-29 Thread Lorenz
ocal machine? I don't think I understand the question. Using the TSVN repo browser should give you the same representation of the repo regardless of the protokoll or if it's local or remote. Or do you want to access the repo remotely via web browser? -- Lorenz

Re: Need Help : Purging very old (/unwanted) revisions

2012-09-04 Thread Lorenz
ubversion.apache.org/faq.html#removal and http://subversion.tigris.org/issues/show_bug.cgi?id=516 -- Lorenz

Re: accessing my repository from another computer

2012-10-10 Thread Lorenz
quot;\svnserve.exe\" --service --root \"\"" DisplayName="svnserve" depend= Tcpip to run svnserve in the background automatically see also http://svnbook.red-bean.com/nightly/en/svn.serverconfig.html -- Lorenz

Re: subscription

2010-01-20 Thread Lorenz
Andreas Kress wrote: >subscribe that would be users-subscr...@subversion.apache.org -- Lorenz

Re: HELP regading subversion

2010-01-22 Thread Lorenz
ons hooks already. For more specific help you will need to provide more details about what you want to do. -- Lorenz

Re: How to install on HP-UNIX and connect by TortoiseSVN client

2010-01-25 Thread Lorenz
on server you'd better be off to be off to the main subversion user mailing list at: users@subversion.apache.org -- Lorenz

Re: How to install on HP-UNIX and connect by TortoiseSVN client

2010-01-26 Thread Lorenz
Ryan Schmidt wrote: >[...] >This *is* the main Subversion user mailing list, and I would ask the user if >he has already checked the obvious download location: Ups. I was sure to be in the TSVN list. My apologies to the OP. -- Lorenz

Re: unsubscribe t...@specialistdevelopment.com

2010-03-18 Thread Lorenz
scr...@subversion.apache.org -- Lorenz

Re: My question about subversion

2010-04-06 Thread Lorenz
vn.reposadmin.maint.html#svn.reposadmin.maint.migrate -- Lorenz

Re: Is there a simple log/diff frontend (like gitk)?

2010-04-13 Thread Lorenz
utputs nothing > >Probably your working is not up to date. "svn up" before running "svn log" >would probably work. because "svn log" on a working copy without "-r" defaults to "-r BASE" which is the last checked-out/updated-to revision. -- Lorenz

Re: Recursive setting of versioned properties using URL using propedit or svnmucc

2010-04-21 Thread Lorenz
file containing one 'propset PROPNAME VAL URL' command per line for each file/folder you want to modify. Then call svnmucc with '--extra-args FILENAME' -- Lorenz

Re: Wanted: pre-commit hook to prevent commits to externals definition

2010-06-07 Thread Lorenz
ginate from. As long as the externals are pointing to the same repository it should be possible to examine the transaction and determine if any of the changed paths is related to an external definition (external properties can be extracted from the transaction too). -- Lorenz

Re: Wanted: pre-commit hook to prevent commits to externals definition

2010-06-07 Thread Lorenz
Daniel Becroft wrote: >Lorenz wrote: >> David Aldrich wrote: >>>Please can anyone point me to an example of a svn pre-commit hook that >>>prevents commits >>>to files that are members of an externals definition? >>> >>>We want to allow su

Re: Setting auto-props from Server side ?

2010-06-07 Thread Lorenz
ask). You could put the relevant config file under version control though. That won't give automatic propagation of changes, but at least you only have to do an update on the client to get the actual settings (no manual fiddeling in config files) -- Lorenz

Re: Help needed on how to use this list

2010-07-07 Thread Lorenz
get an answer that tells you all you need to know about this mailing list (including how do request archived emails). alternatively you could use a email-to-news service like gmane.org to read and participate using a newsreader. -- Lorenz

Re: How to access local svnserve repository in Windows

2010-07-08 Thread Lorenz
David Bartmess wrote: >I've setup a local repository under C:\svn_repository\Test using >"svnadmin create c:\svn_repository\Test", and want to access it via the >command line svn.exe. The svnserve is setup as a Windows service, and I >can see that it's started. >[...] >svn import -m "Test import

Re: Mailing lists? Really?

2010-07-28 Thread Lorenz
provides a mailing-list to nntp gateway as its main service 8-) -- Lorenz

Re: How to cut and graft?

2010-08-01 Thread Lorenz
in one commit, you could use svnmucc. an perhaps not svn rm the old trunk but svn mv it, so you have easier access to it (no need to remember/investigate the revision where it was deleted) -- Lorenz

Re: Repository Directory Tree

2010-09-09 Thread Lorenz
served. > >- commit > svn commit -m"Reorganising the projects" if you don't want to check-out the whole repository, and are working from the command line anyway, you can use svnmucc to do the restructuring in one commit without a working copy. svnmucc mv url1 url2 mv url3 url4 ... -- Lorenz

Re: Repository Directory Tree

2010-09-13 Thread Lorenz
Nico Kadel-Garcia wrote: >On Fri, Sep 10, 2010 at 5:57 PM, Nico Kadel-Garcia wrote: >> On Fri, Sep 10, 2010 at 1:42 AM, Lorenz wrote: >>[...] >>> if you don't want to check-out the whole repository, and are working >>> from the command line anyway, you can u

Re: Java API?

2010-09-20 Thread Lorenz
gt; its modification date/time? > > Have a look at http://svnkit.com/ but be aware, that subversion doesn't store individual modification date/time but only the date/time a revision was commited. -- Lorenz

Re: Multiple svn chekcouts in the same top-level hierarchy

2010-09-21 Thread Lorenz
e a difference regarding issue 2) though. -- Lorenz

Re: Correct way to undo commit of a tag?

2015-02-24 Thread Lorenz
erge of r69 into '.': >U . >Tree conflict on 'tags\TAG_ > > local dir edit, incoming dir delete upon merge >Select: (r) mark resolved, (p) postpone, (q) quit resolution, (h) help: ... for a reverse merge of the tag creation you would need to do the merge on a working copy of the parent folder of the tag. -- Lorenz

Can someone please verfiy this "svn -v st" behaviour with file externals?

2015-05-12 Thread Lorenz
ty-sub.txt" wc/sub svn commit --username me -m "" wc svn checkout wc2 svn -v status wc2 svn update wc2 svn -v st wc2 << <<<<< -- Lorenz

Re: List commits for specific user & date range

2015-06-24 Thread Lorenz
client you would need to script the filtering for author -- Lorenz

Re: Add mailing development

2015-12-01 Thread Lorenz
Alfredo Telles | Project Manager & Co Founder | Urbanweb wrote: >Add me please let me know. see http://subversion.apache.org/mailing-lists.html for how to subscribe to the mailing lists or use a news client via news.gmane.org -- Lorenz

Re: Upgrade Subversion from 1.5 to 1.9

2016-03-22 Thread Lorenz
de working copies created with >>Subversion 1.6 and Subversion 1.7. -- Lorenz

Re: SVN compatibility question

2016-04-01 Thread Lorenz
ookie mistake >>> some hair... If they look at 'svn help mv' to find this new hypothetical >>> --meta-data-only option, that is. (We could re-use the --record-only >>> option from 'svn merge' as a name.) >> +1. Sounds like a good idea to me. > >Yup, and ditto for 'svn copy'; I know that SmartSVN has an option to >find and fix up such mistakes, and apparently that's a very popular feature. TortoiseSVN too -- Lorenz

Re: single file version control - was: SVN

2016-05-29 Thread Lorenz
ence a single file, [...] >It did sound like non-text assets. Either way, besides the limitation >of working copies always being a directory, all svn clients support >checking out a selection of the tree, including down to a single file >therein. the keyword is "sparse working copy" in that case -- Lorenz

Re: How to remove a revision from the achieve

2016-08-28 Thread Lorenz
it from the whole archive again by deleting >the last revisions? > * Or it is possible to copy an archive just until a specific revision >with a command like hotcopy? have a look at the maling list archive http://svn.haxx.se there is plenty of relevant information -- Lorenz

Re: Subversion dump/load - author

2016-09-15 Thread Lorenz
Tom Sorensen wrote: >[...] >Thank you – I’ll need to consider dumping the entire repo or use it the way it >is. you always can do incremental dumps if the dump file gets to large, or you can try svnsync -- Lorenz

Re: svn switch, touches files with svn:keywords

2016-09-25 Thread Lorenz
y file modification time has change > >I can reproduce this with current trunk and I agree it's a (minor) bug. >[...] are you sure about tha being a bug? If for instance in the file the URL keyword is used to initialize a string variable, wouldn't you want the file to be recompiled after the switch? -- Lorenz

Re: svn switch, touches files with svn:keywords

2016-09-26 Thread Lorenz
Daniel Shahaf wrote: >Lorenz wrote on Mon, Sep 26, 2016 at 06:01:31 +: >> are you sure about tha being a bug? >> >> If for instance in the file the URL keyword is used to initialize a >> string variable, wouldn't you want the file to be recompiled after the &g

Re: Implementing the Lock->Edit->Unlock cycle

2016-09-29 Thread Lorenz
d update, > lest one might accidentally start editing an > old version of some file. >[...] "svn lock" will fail if your working copy is not up to date. So using svn:needs-lock and an editor that prevents you from modifying read-only files should do the job. -- Lorenz

Re: svn switch, touches files with svn:keywords

2016-09-29 Thread Lorenz
with the system. > >Subversion supports both the "recompile from scratch after switch" >workflow and the "recompile minimally after switch" workflow. You don't >have to use the latter if you don't like it. Could you please elaborate a bit on this? I assume you refere to the "use-commit-times" config option? -- Lorenz

discrepancies between 'svn -R list' and 'svn -R propget' (on windows using TSVN build command line client)

2016-11-16 Thread Lorenz
ith the TSVN client only? I'm on win7 using the command line client that ships with tortoise svn (TSVN 1.9.4 linked against svn 1.9.4) -- Lorenz

Re: discrepancies between 'svn -R list' and 'svn -R propget' (on windows using TSVN build command line client)

2016-11-16 Thread Lorenz
path difference? svn -R ls path/subpath file1 subsubpath/file2 ... vs. svn -R pg svn:keywords path/subpath subpath/file1 - ... subpath/subsubpath/file2 ... -- Lorenz

svn --recursive and externals

2016-11-16 Thread Lorenz
Hi all, looks like "svn --recursive ..." ignors externals. Is this intended? I don't seem to be able to find any documentation about the it. Either there is none, or my seach skills are lacking badly. -- Lorenz

Re: svn --recursive and externals

2016-11-16 Thread Lorenz
Stefan Sperling wrote: >On Wed, Nov 16, 2016 at 02:22:53PM +0000, Lorenz wrote: >> looks like "svn --recursive ..." ignors externals. >> >> Is this intended? > >Look for --ignore-externals or --include-externals options in the >output of 'svn help SU

Re: discrepancies between 'svn -R list' and 'svn -R propget' (on windows using TSVN build command line client)

2016-11-17 Thread Lorenz
Bert Huijben wrote: >> -Original Message- >> From: Lorenz [mailto:loren...@yahoo.com] >> Sent: woensdag 16 november 2016 15:02 >> To: users@subversion.apache.org >> Subject: Re: discrepancies between 'svn -R list' and 'svn -R propget' (

how to determine files missing certain propertiers?

2016-11-17 Thread Lorenz
ally do (see threads "discrepancies between 'svn -R list' and 'svn -R propget'" and "svn --recursive and externals"). So, anyone out there with solutions/hints/links? -- Lorenz

Re: Individual file merge . Merging a newly added file

2017-08-01 Thread Lorenz
>https://my.svn.domain/svn/foo/branches/bar/newfile.txt is in status "A" >. How can I do such merges . adding a file is a change to the parent directory. -- Lorenz

Re: Individual file merge . Merging a newly added file

2017-08-02 Thread Lorenz
Andrew Reedick wrote: >> -Original Message- >> From: Lorenz [mailto:loren...@yahoo.com] >> Sent: Wednesday, August 2, 2017 1:34 AM >> To: users@subversion.apache.org >> Subject: Re: Individual file merge . Merging a newly added file >> >> JP w

Re: 'svn ls' not showing the contents of the repository

2017-11-29 Thread Lorenz
of the current working copy directory." vs. "The default TARGET is “.@BASE”, meaning the repository URL of the current working copy directory at the time of checkout or last update." Lorenz

Re: Combining files from different projects into a new project?

2017-12-26 Thread Lorenz
rom other repositories. A file >external's URL must always be in the same repository as the URL that >the file external will be inserted into. -- Lorenz

change attribute visibility in board from command line/skript/ulp (eagle 6.6)

2018-11-02 Thread Lorenz
ard editor, besides using the attribute dialog. Anyone out there with an idea? -- Lorenz

Re: change attribute visibility in board from command line/skript/ulp (eagle 6.6)

2018-11-04 Thread Lorenz
Stefan Sperling wrote: >On Fri, Nov 02, 2018 at 02:30:17PM +0000, Lorenz wrote: >> Hi all, >> >> I've defined attributes on parts in the schematic editor. >> >> Now I'm trying to show them in the layout running an ULP on the >> grouped

Re: Importing from a working copy ... bad idea?

2019-04-17 Thread Lorenz
could use svnmucc (subversions 'multi URL command client') and script the whole process into one commit. -- Lorenz

Re: Viewing the woking copy of a lock

2019-08-20 Thread Lorenz
e working copy, you could run "svn info" on all occurences of the file, to identify the working copy. -- Lorenz

Re: Svn client configuration file

2019-09-18 Thread Lorenz
e latest version in the 1.9 series is 1.9.12 -- Lorenz

Re: Server side copy, will history be copied too?

2019-09-29 Thread Lorenz
f history, for example if >you later do 'svn log filename' (unless you use the --stop-on-copy >argument to svn log). if you want to reduce the number of commits (1 per file copy) when doing the copying as you show above, you can also collect your files in a working copy and commit only once. Or you can use svnmucc get the same result but avoid the working copy. -- Lorenz

Re: "hook" "conf" "db" "lock" folders are showing under SVN physical project repository instead of actually project files

2020-01-27 Thread Lorenz
3 ... > >But when we check under SVN server physical directory, we are unable to find >our project folder structure / files and system is showing "conf" "db" "hooks" >"locks" folders. the files the subversion server is managing constitute a database, not a direct mirror of your project folder structure. -- Lorenz

Re: Why does acessing logs using "-r HEAD" doesn't provide results?

2020-05-19 Thread Lorenz
revision of the repository. If you path was not touched by this revision, there is no log regarding this path and revision to return. Your second example on the other hand explicitly asks for the log message of the last revision the given path was touched. -- Lorenz

Re: Why does acessing logs using "-r HEAD" doesn't provide results?

2020-05-20 Thread Lorenz
Daniel Shahaf wrote: >Lorenz wrote on Tue, 19 May 2020 05:22 +: >> Thorsten Schöning wrote: >> >So why does HEAD doesn't provide any details? Thanks! >> >> though Daniel mentions it already in the first third of his first >> sentence, I wanted

Re: How to recover from a failed update/merge?

2020-08-10 Thread Lorenz
clean, nw check out or revert + update -- Lorenz Bo Berglund wrote: >I have this multi-platform app in SVN thet I started in Windows but >lately have worked on in Linux. >The correct latest version is from Linux and I wanted to verify it on >Windows. > >Everything is commit

Re: How to Prevent SVN commits if the Valid number is not entered

2021-03-09 Thread Lorenz
tc. > >There are many Google accessible answers, but perhaps our hero can >start with a classic example at >https://stackoverflow.com/questions/16751653/unable-to-generate-output-from-svn-pre-commit-hook >. why do you assume the OT is asking for a client (TSVN) side hook? To me his batch script looks like a server side pre-commit hook -- Lorenz

Re: How to Prevent SVN commits if the Valid number is not entered

2021-03-10 Thread Lorenz
the defect and >1>&2 >echo then try committing again. -- Thank you 1>&2 >exit 1 What exactly are you asking for? At first glance your script looks ok to me, only the findstr regex seems to be missing. -- Lorenz

Re: SVN: PCSWMM Use

2021-10-07 Thread Lorenz
line client as part of its installer. > >If you are on MacOS os Linux, then just install the command line client and >try that ... again using a local repository and file:// protocol. > >Mark -- Lorenz

Re: Recursively correct moved External repository paths (that no longer exist) in the current SVN Repository

2021-10-20 Thread Lorenz
ch, you need to use a "peg" revision. svn co URL@806 to point the client to a revision where the branch still exist -- Lorenz

Re: Permission to translate your page at http://svnbook.red-bean.com/

2013-03-21 Thread Lorenz
nto >Serbo-Croatian language, that is used in all Former Yugoslav Republics >and to post it on my website. Hopefully, it will help our people to >gather some additional knowledge about computing. you'd better ask this question on the book mailing list svnbook-...@red-bean.com -- Lorenz

Re: Files on trunk overwritten...

2013-04-25 Thread Lorenz
objectionable commit I would go with the reverse merge though. -- Lorenz

Re: Tortoise SVN Issue Noticed

2013-04-28 Thread Lorenz
ario # 2 : > >1. I had a new excel Sheet Created of size 1496 kb. Then right click and slect >'Add'. Then right Click and Select 'SVN Commit. > >2. After some time, the client shows '583 kBytes transferred in >>>" . But why >does the client report a size which does not seem to match the transaction. transmissions are compressed -- Lorenz

Re: please unsubscribe me from the list

2013-06-19 Thread Lorenz
Alexander Ivanenko wrote: > Please unsubscribe me from the list, unsubscribe-us...@subversion.apache.org > seems not to work! you got the email adress wrong, look in the eMail headers for the correct spelling. -- Lorenz

Re: Change all existing static externals in tags from operative to peg?

2013-09-19 Thread Lorenz
svnmucc control file to apply the changes in one commit. -- Lorenz

Re: Change all existing static externals in tags from operative to peg?

2013-09-19 Thread Lorenz
Andreas Krey wrote: >On Thu, 19 Sep 2013 08:36:19 +0000, Lorenz wrote: >... >> you can use: >> >> svn propget svn:externals -R repoURL >> >> to get all external definitions. > >Does that actually work again on big repositories? >It used not to,

Re: Preserve timestamps while creating tag with SVN copy

2013-10-28 Thread Lorenz
es on the revision timestamps to be ordered). And you will need a pre-revprop-change hook to allows revprop changes. -- Lorenz

Re: define files structure in svn (CAD PDM)

2014-02-04 Thread Lorenz
red my repository I'd like to keep a folders structure (for >example steel-parts; plastic-parts; rubber-parts ) but when inporting >the project I'd like to keep the files all in a single level. >Is it possible? [...] have a look at file externals -- Lorenz

Re: How to switch, or update, a file that exists only in a brnch ?

2014-11-26 Thread Lorenz
Kerry, Richard wrote: >I have a couple of files that exist only in a branch which I’d like to >have within my Working Copy. [...] have you considered "file externals" -- Lorenz

Re: How to delete fiiles on the server that were accidentally part of an import?

2024-09-23 Thread Lorenz via users
/svnbook.red-bean.com/nightly/en/svn.basic.in-action.html#svn.basic.in-action.wc.tbl-1 - are you aware that svn delete removes its target from HEAD revision? The file/folder will still be in the repo and accessable going back in history. -- Lorenz

Re: Is it possible to export multiple files in one command?

2023-01-26 Thread Lorenz via users
itions as part of the source tree and modify the build process to work of this folder (without the need to modify the build process) -- Lorenz

Re: calling svnsync synchronize

2023-06-27 Thread Lorenz via users
drop BDB support with 1.6 is ist the source or the synced to repo that svnsync is complaining above? -- Lorenz

Re: Is there a write opposite to "svn cat"?

2023-11-26 Thread Lorenz via users
try svnmucc put -- - url -- Lorenz Graham Leggett via users wrote: >On 25 Nov 2023, at 13:40, Pavel Lyalyakin >wrote: > >> `svnmucc put` perhaps? >> https://svnbook.red-bean.com/en/1.8/svn.ref.svnmucc.re.html > >From reading the manual it looks perfect, but I

  1   2   >