# Make sure you are using the correct accountgcloudconfiglist# Display instance infogcloud compute instances describe instance-1 --zone=us-central1-a --project=proj-id-253611gcloud compute instances describe instance-1 --zone=us-central1-a --project=proj-id-253611
# Delete instanace and ALL DISKSgcloudcomputeinstancesdeleteinstance-1--zone=us-central1-a--project=proj-id-253611--delete-disks=all
# Create SSH tunnelgcloudcomputesshyour-instance-name--project=your-project-name---NL9022:127.0.0.1:22# Mount remote folder locallysshfs -odebug,sshfs_debug,loglevel=debug,ServerAliveInterval=30,IdentityFile=~/.ssh/google_compute_engine your-username@localhost:/remote/folder/path /local/folder/path -p 9022
# Mount local folder remotellysshfs -odebug,sshfs_debug,loglevel=debug,ServerAliveInterval=30,IdentityFile=~/.ssh/google_compute_engine /local/folder/path your-username@localhost:/remote/folder/path -p 9022
rsync
# Openn SSH tunnelgcloudcomputesshyour-instance--project=your-project---NL9022:127.0.0.1:22# Rsync from local to remotersync --progress --checksum -a -e "ssh -p 9022 -o IdentityFile=~/.ssh/google_compute_engine" /local/path your-user@localhost:/remote/path/