Reputation: 15571
If I create an app from boilerplate, may I host that code on GitHub instead of Jazz Git from within the dashboard?
Upvotes: 1
Views: 77
Reputation: 209
you need first to push your code to github and then you can create a webhook from Bluemix DevOps interface (https://hub.jazz.net/) to your existing github project by creating a new Bluemix DevOps project. In that way your code is on GitHub but you can still use the DevOps Bluemix pipeline.
Upvotes: 1
Reputation: 3233
If you store your code in a Git repository that is hosted by IBM Bluemix DevOps Services (clicking on "Add Git"), you can work with code in a Git terminal or in a web IDE. If you already have another Git repo, you can use it with a DevOps Services project, but you need to do the following:
git remote add new_repo https://hub.jazz.net/git/your_alias/project_name
git push -u new_repo master
For more information please take a look at IBM Bluemix DevOps Services - Git source control
Upvotes: 2