How to set a revision number for svn external?

Legolas picture Legolas · Oct 2, 2012 · Viewed 14.3k times · Source

So I have this file Mobile.framework and if I do a svn propedit i get

svn propedit svn:externals

It brings up

Mobile.embeddedframework  svn+ssh://../Mobile.embeddedframework

This is pointed to the head.

I want to edit this and set it to -r1209. Whats the correct way to set it to a revision?

Answer

Shi picture Shi · Oct 3, 2012

Have a look at the SVN manual:

Mobile.framework svn+ssh://../Mobile.embeddedframework@100 - note the @100.

(or)

svn propedit svn:externals .

can help you edit it.