Book a Demo

Author Topic: VC-Subversion-Get all Latest  (Read 5475 times)

yiki

  • EA User
  • **
  • Posts: 39
  • Karma: +0/-0
    • View Profile
VC-Subversion-Get all Latest
« on: January 19, 2012, 06:27:06 am »
I have my .EA in version controll (al my package are under VC) in a file "a". Than I made copies of that file "a".

Now when I add a package to any of these files ("a" or the copies of "a"), and then try to "get all latest" the new pckage added does not appear, unless I do "get pacakge" than it shows!.

any suggestions or that's how is suppose to work?
than why "get all latest" is there?

thanks

rocketman

  • EA Novice
  • *
  • Posts: 9
  • Karma: +0/-0
    • View Profile
Re: VC-Subversion-Get all Latest
« Reply #1 on: January 21, 2012, 06:30:01 am »
hi yiki,

from your description, it isn't quite clear to me which of the steps you were describing were inside EA or outside of EA (in your file system).

In SVN on your file system, placing a file or folder in a subversioned folder does NOT put that file or folder into subversion.  You must perform an "svn add" and "svn check-in" to add it to the SVN repo.  Neither will placing a file or folder within the XML structure of your SVN'd project put it into your .eap project file.  You must import it (get package).

Within EA, if you're trying to make a copy of an EA folder in the browser and you want the copy to be subversioned also.  First, check out the folder you want to place it into.  Copy/Paste the folder you want a copy of.  Right click on the new copy -> package control -> add to version control.  This will create a new xml file on your file system (svn add).  When you check in the parent folder and pasted folder, you will have performed the svn checkin necessary to put it into the repository...  

Hope that helps...