简体   繁体   中英

Android Studio move project from Eclipse to SVN

I have been developing an Android project on Eclipse and have used SVN with tortoise to backup the project.

I have recently moved to Android Studio and imported the project from Eclipse. I have also made extensive edits in Android Studio.

Now I want to use SVN on Intellij. I have looked for help on setting up SVN on Intellij and committing the updated files.

I have not been able to find basic help on doing this. What I have found is information that assumes you know all there is to know on SVN, setting up Intellij and committing edits. My knowledge is scratchy so any help would be appreciated.

You can enable Subversion integration in Settings | Version Control. Once you do that, you will see the list of the files you've modified in the Changes view (you can use VCS | Show Changes View to display it easily). From there, you commit changes by selecting specific files or an entire changelist and invoking the "Commit Changes" action from the context menu.

You can find a basic introduction on working with version control in IntelliJ IDEA here .

If you have made changes in a directory which was not controlled by Subversion, then you need to check out your Subversion repository to a separate clean directory (VCS | Check out from version control | Subversion, see here for more details), then copy the changed state of your project to the directory you've checked out (overwriting all the files there). Then you'll be able to commit your changes as described above.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM