Reputation: 13
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
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
Reputation: 1599
You can upload projects by any of the following options:
Upload a zip file, and extract it using 'unzip' command in the console.
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!)
Upload your project to Github, and pull the project from there. ( http://help.nitrous.io/github-add-key/ )
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
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