Android Studio - Schedule to Add

I just checked out a working copy of Subversion in Android Studio .

When I wanted to open this project, I was asked the following: " Do you want to schedule the next file to add to Subversion? "

Now does this mean that if I actually schedule a file to be added to Subversion, it will automatically be submitted to subversion or something?

Or, if I say no, how can I manually add it to the Subversion add-on?

+3


source to share


2 answers


When you open a project, Android Studio notices an unversioned element in your working copy project and prompts you to ask if this element should be added under version control or not. In terms of the command line client svn.exe, Android Studio asks for svn add

an item.



svn add

the command has scheduled files, directories or symbolic links in your working copy to add to the repository . The next time you check in a new revision svn commit

, the add will be pushed to the repository.

+5


source


In a section Local

, you have a section named Unversioned Files

.

Select the files you plan to add to SVN, right click them and select Add to VCS

.



Then you can write files as usual.

0


source







All Articles