First, we need to install cloud sdk:
curl https://sdk.cloud.google.com | bash
To access Google cloud simply type:
ssh -i ~/.ssh/google_compute_engine <user_name>@<ip>
And to copy the file to Google Cloud:
gcloud compute copy-files <local_folder> <instance-name>:~ --zone us-central1-f
copy file from Google Cloud:
gcloud compute copy-files <instance-name>:<some_folder> <local_folder> --zone us-central1-f
gcloud compute copy-files spooky-instance:<some_file.ipynb> . --zone us-central1-f