DEV Community

Cong
Cong

Posted on

To mount Google Cloud Shell home onto Mac

You can mount your Google Cloud Shell home onto your local filesystem in your Mac. First, install FUSE and SSHFS. Then run the command for the mounting point ~/my-cloud-shell:

bash -c "$(gcloud alpha cloud-shell get-mount-command ~/my-cloud-shell)"
ls ~/my-cloud-shell

More instructions are available at the Google Cloud Blog.

Top comments (0)