Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

git-svn display svn repository url

Tags:

My project is setting up using git and upload to svn. However, i forgot what is the svn repository url that is configured with my project. Is there a command line to show that information?

Thanks,

like image 542
Sean Nguyen Avatar asked Dec 02 '10 17:12

Sean Nguyen


People also ask

How do I find my SVN repository URL?

Step 1: Create a folder in your local file system. Right click inside the folder where you want to checkout the repository and select "SVN Checkout..." from the pop-up menu. Step 2: In the new pop-up window, enter the URL for your Assembla-hosted SVN repository and click OK.

What is SVN URL?

As illustrated throughout this book, Subversion uses URLs to identify versioned resources in Subversion repositories. For the most part, these URLs use the standard syntax, allowing for server names and port numbers to be specified as part of the URL: $ svn checkout http://svn.example.com:9834/repos …

What is Git SVN ID?

DESCRIPTION. git svn is a simple conduit for changesets between Subversion and Git. It provides a bidirectional flow of changes between a Subversion and a Git repository. git svn can track a standard Subversion repository, following the common "trunk/branches/tags" layout, with the --stdlayout option.


1 Answers

git svn info 

That should do the trick

like image 176
Scott Wisniewski Avatar answered Sep 18 '22 03:09

Scott Wisniewski