Vikash Balasubramanian
Vikash Balasubramanian

Reputation: 3233

Intellij idea upload changes to subversion repository

I checked out a maven project from a remote folder in an svn repository using Intellij Idea and opened it as a maven project

I have made some changes locally. now how do i push these changes to the remote folder again

I am confused between the integrate changes and the commit changes option, please help

There is an upload to server option in the commit dialog box, but it is asking for an ftp host i don't know about that,

I just imported it using the http url something like this http://107.108.70.64/svn/folder1/folder2

Upvotes: 0

Views: 255

Answers (1)

vikingsteve
vikingsteve

Reputation: 40378

Afaik subversion doesn't support local repositories (unless you have explicitly installed a subversion server on your local machine), so commiting will indeed commit to the central repository.

It contrast, other source control systems (such as git) do operate in a way where you may first commit to a local repo and then push to the remote one.

Upvotes: 1

Related Questions