onsdag 7 juli 2021 kl. 07:25:57 UTC+2 skrev sanket belsare: > Hello, > > I am using tortoise SVN version 1.10.0 and all ther repositories are based > on one server location. > > Now I am having trunk with one directories having external link and need > to take out branch from the trunk with the change in external link. I know > this can be done through GUI. > > But need to understand how external link can be changes through command > line using svn propset or any other command. >
If you want to do it on the command line, you can do as follows (n.b. you have to do this on the folder containing the external folders): [[[ D:\Dev\tortoisesvn\ext>svn propedit svn:externals . Set new value for property 'svn:externals' on '.' D:\Dev\tortoisesvn\ext> ]]] Initially, I didn't have an editor configured for my system so I actually got an error message first and I had to set the EDITOR environment variable first, but you can do this in Windows if you want to. [[[ D:\Dev\tortoisesvn\ext>svn propedit svn:externals . svn: E205007: None of the environment variables SVN_EDITOR, VISUAL or EDITOR are set, and no 'editor-cmd' run-time configuration option was found D:\Dev\tortoisesvn\ext>set EDITOR=notepad.exe D:\Dev\tortoisesvn\ext> ]]] Since this is a TortoiseSVN forum, I would also suggest that you can change it using the context menu in the containing folder. To make the changes permanent, you have to commit it as with any change. Hope this helps! Daniel Sahlberg -- You received this message because you are subscribed to the Google Groups "TortoiseSVN" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/tortoisesvn/07fc7af0-08e1-4fd2-82a6-b35debb8659cn%40googlegroups.com.
