git

Move Developer Cloud Service Project Between Environments in 15 Minutes


The idea here is how to move your CI/CD environment from one environment to another, for instance from presales to delivery. Developer Cloud Service (DevCS) is an CI/CD environment included at no extra cost in your Pass subcription providing git repo, maven repo, wiki, build automation (Hudson/Jenkins), deployment automation, webhooks, issues-agile-scrum-camban dashboard, merges, … What […]

More

Push project to Oracle Developer Cloud Service


Create a new project in DevCS or add a new repo to an existing project and get the repository url (ssh or https), for example: https://javier.mugueta%40oracle.com@developer.em2.oraclecloud.com/developerxxxx/s/developerxxxxxx_prueba_5401/scm/prueba.git Now in your local machine: cd <yourworkingdirectory> git init test cd test git remote add cloud https://javier.mugueta%40oracle.com@developer.em2.oraclecloud.com/developerxxxx/s/developerxxxxxx_prueba_5401/scm/prueba.git git remote -v git pull cloud master cp -r ../scfcot/* . (copy source code […]

More