jackiezlu
jackiezlu

Reputation: 13

How to download my program from the nitrous.io's server?

Now, i wrote some program source.but i want to store them into my computer. How to download my program into my computer from the nitrous.io's server?Who can help me, i need your help. Thank you very much.

Upvotes: 1

Views: 1792

Answers (3)

tomas.satinsky
tomas.satinsky

Reputation: 871

You can also compress entire project to one zip file

zip -9 -r all.zip workspace

and then download the zip file

Upvotes: 1

Greg
Greg

Reputation: 1599

You can upload projects by any of the following options:

  1. Upload a zip file, and extract it using 'unzip' command in the console.

  2. Utilize the Mac App to Sync your files ( http://www.nitrous.io/mac , an update for Mavericks and also a Windows app is coming soon!)

  3. Upload your project to Github, and pull the project from there. ( http://help.nitrous.io/github-add-key/ )

  4. Upload the content via SCP. To do this, you will need to add an SSH Key to your account ( http://help.nitrous.io/ssh-add/ ).

Next, run this command on your local machine, replacing {PORT} with the port # assigned to your Nitrous.IO box, and also changing usw1 with the proper region found in the SSH URI of your boxes page ( https://www.nitrous.io/app#/boxes ).

To Upload:

scp -P{PORT} -r path/to/yourFolder [email protected]:~/workspace

To Download:

scp -P{PORT} -r [email protected]:~/workspace path/to/yourLocalFolder

Upvotes: 6

Paul Collingwood
Paul Collingwood

Reputation: 9116

Open up the IDE. Go to the file you want in the file system view on the left and right click and select "download file".

Upvotes: 2

Related Questions