Android Studio - create a new project in an empty SVN repo

In Eclipse, using the Subclipse plugin, I could create an empty SVN repo and then use the "Checkout as a project using new project wizard" option to create a new Android project and immediately commit it to the empty SVN repo. In Android Studio, I haven't found a way to do this without first creating the project and then importing it into source control and then checking it out again. I must be doing something wrong, please help.

0


source to share


1 answer


You can get an answer here Using SVN in Android Studio

  • If you are creating a new project that is not in your SVN repo, you first need to import the project (select "VCS" => "Import to version control" => "Import to subversion")

  • Add your repo address to it, for example for the lab1 submission, the repo should be " https://svn.cs.dartmouth.edu/classes/cs65-W15/Your_Name/Lab1_submission/ " (You don't need to create Lab1_submission on svn beforehand, it will create it for you if it doesn't exist).

  • Then select the project folder and click "import".

  • Enter the commit message and click OK.
  • You may need to enter your SVN credentials.


Please follow the rest of the steps from the link Using SVN in Android Studio

You can also follow Android Studio and Subversion

0


source







All Articles