Cloud9 was an online integrated development environment, published as open source from version 3.0. It supported hundreds of programming languages, and enabled developers to start coding immediately with pre-configured workspaces. Cloud9 also supported collaborative coding features, live preview, and browser compatibility testing.[1]
Cloud9 was acquired by Amazon in July 2016. On April 2 2019, Cloud9 announced that users would not be able to create new and use old workspaces on c9.io after June 30, 2019. All current development should refer instead to Amazon Cloud9. The following resources refer to the original c9.io and may be outdated.
Either connect your GitHub or Bitbucket account to your Cloud9 account, or log into Cloud9 using your GitHub or Bitbucket account.
Clone a repository from your GitHub or Bitbucket account into Cloud9, creating a new workspace.
Add folders and files to your Cloud9 project.
In the Cloud9 bash prompt (or a New Terminal window), use the following git commands to add files and changes to the local repository and then push the changes back to GitHub or Bitbucket. Note: git status is optional, and only for reference to see the changes in status between git commands. git status git add . git status git commit -m "commit message" git status git push git status
Log into your GitHub or Bitbucket account and verify that the code changes were replicated to your repository.
Continue adding and updating files in your Cloud9 project. When you are ready to save your changes to GitHub or Bitbucket, repeat the git commands. git add . git commit -m "commit message" git push
When your GitHub or Bitbucket repository is updated outside Cloud9 and you want to pull those changes into Cloud9, use the following command: git pull
If desired, add additional language support to your Cloud9 workspace: