Hello
We are migrating our trunk code from TFS (VCS, MSSCCI) to SVN. [We don't put the 1.5 gig of PBLs in SVN (total waste of space and effort) as the tool leads you to think you must do. It works just fine without PBLs. Branching works fine too.
When adding a workspace, there is a major manual effort to unselect / select all the proper files under the workspace to go into ws_objects.
We have 100+ applications which are based on a 15 PBL common PBD framework code set.
Must each application be manually added to source control? (big manual effort)
or
Is there a way to automate the process?
Thanks for your thoughts
Yakov Werde
Dev Ops & Sr Developer
Openlink Financial
Thanks for the feedback on your SCM journey.
I have not heard about any planned ORCA API enhancements.
Regards ... Chris
git fetch --all
git reset --hard origin/master
That will pull the most resent source and completely wipe out anything left over from a previous build process. Then simply call an orca script that will build PBLs from scratch using the loose source files that you just pulled with git. Here is a sample orca script that would do that:
https://pastebin.com/d5WbSJWw
You would run this with the working directory set to the root of your git repo.