Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to set a revision number for svn external?

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?

like image 522
Legolas Avatar asked Oct 02 '12 21:10

Legolas


People also ask

What is revision number in svn?

As you saw in the section called “Revisions”, revision numbers in Subversion are pretty straightforward—integers that keep getting larger as you commit more changes to your versioned data.

How do I find my svn revision number?

To find information about the history of a file or directory, use the svn log command. svn log will provide you with a record of who made changes to a file or directory, at what revision it changed, the time and date of that revision, and, if it was provided, the log message that accompanied the commit.

How do I revise in svn?

"svn info --show-item revision" will give the current revision to which the current directory is updated.


1 Answers

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.

like image 113
Shi Avatar answered Oct 19 '22 08:10

Shi