I have been using eclipse (with openshift plugin) for my Openshift v2 project. Now, I have to migrate.
In Openshift v2, I run local git repositories. Each repository branch has a correpsonding remote (I assume in Openshift V2). I can push/pull etc between local and remote branches. I rarely use rhc nor did I use git command line on my local machine.
In Openshift v3, it seems that I cannot interact with remote Git repositories in Openshift from Eclipse: everything goes through https://github.com. After going through several "migration guidelines", I suspect this will be how to use Eclipse with Openshift V3:
- Develop code (mine is JavaEE + Springframework + Mysql) on Eclipse and local git repositories;
- Push the code to Github.com repositories (if I don't want to open my code to public, I pay for a private repository at https://github.com);
- Use oc command line to get code from github.com into my Openshift V3 project.
Do I get this right?
In Openshift V3, is it possible I can do push code into Openshift project from eclipse directly, without going through github.com?